
string result = Regex.Replace("Hello, the world is round", @"\w+", new MatchEvaluator( CapitalizeString ) );
static string CapitalizeString( Match str )
{
string tmpStr = str.ToString();
tmpStr = char.ToUpper( tmpStr[ 0 ] ) + tmpStr.Substring(1, tmpStr.Length - 1).ToLower();
return tmpStr;
}
Comments
No comments have been posted