正在阅读:解读 C# 中的正则表达式解读 C# 中的正则表达式

2004-10-08 14:53 出处:CSDN 作者:hanlichou 责任编辑:linjixiong

  

  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 + "]");
  
  }

  
  同时需要注意的是,由于仅仅需要对单词进行修改而无需对非单词进行修改,这个模式显得非常简单。


察看评论详细内容 我要发表评论
作者笔名 简短内容 发表时间
:
键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品