Regex reg = new Regex("(?<y>\d{4})-(?<m>\d{1,2})-(?<d>\d{1,2})",RegexOptions.Compiled);
 ">

正则表达式中的组集合的使用

80酷酷网    80kuku.com

  集合|正则

简单实例:

    string s = "2005-2-21";
    Regex reg = new Regex("(?<y>\d{4})-(?<m>\d{1,2})-(?<d>\d{1,2})",RegexOptions.Compiled);
         
    Match match = reg.Match(s);
    int year =  int.Parse(match.Groups["y"].Value);
    int month = int.Parse(match.Groups["m"].Value);
    int day = int .Parse(match.Groups["d"].Value);
    DateTime time = new DateTime(year,month,day);













分享到
  • 微信分享
  • 新浪微博
  • QQ好友
  • QQ空间
点击: