Subscribe:

Labels

Wednesday, October 19, 2011

ReplaceUnderscoreWithWhiteSpace

public static string ReplaceCharacterInString(string value, string oldValue, string newValue)
        {
            return value.Replace(oldValue, newValue);
        }

        public static string ReplaceUnderscoreWithWhiteSpace(string value)
        {
            string temp = value.Replace("_", " ");
            return temp;
        }

No comments:

Post a Comment