| text=[the quick red fox jumped over the lazy brown dog.] result=[The Quick Red Fox Jumped Over The Lazy Brown Dog.] |
基于表达式的模式 完成上例中的功能的另一条途径是通过一个MatchEvaluator,新的代码如下所示:
| static string CapText(Match m) { //取得匹配的字符串 string x = m.ToString(); // 如果第一个字符是小写 if (char.IsLower(x[0])) // 转换为大写 return char.ToUpper(x[0]) + x.Substring(1, x.Length-1); return x; } static void Main() { string text = "the quick red fox jumped over the lazy brown dog."; System.Console.WriteLine("text=[" + text + "]"); string pattern = @"\w+"; string result = Regex.Replace(text, pattern, new MatchEvaluator(Test.CapText)); System.Console.WriteLine("result=[" + result + "]"); } |
同时需要注意的是,由于仅仅需要对单词进行修改而无需对非单词进行修改,这个模式显得非常简单。
|