WEB开发网
开发学院WEB开发ASP.NET 正则表达式中的组集合的使用 阅读

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

 2006-11-18 17:16:13 来源:WEB开发网   
核心提示:简单实例: string s = "2005-2-21"; Regex reg = new Regex(@"(?<y>\d{4})-(?<m>\d{1,2})-(?<d>\d{1,2})",RegexOptions.Compiled);

简单实例:

   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);

Tags:正则 表达式 集合

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接