\d{4})-(?\d{1,2})-(?\d{1,2})",RegexOptions.Compiled);Match match = reg.Match(s);int year =int...">
当前位置 > 文字教程 > Asp.net教程

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

文章类别:Asp.net | 发表日期:2008-10-5 22:08:13

简单实例:

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

视频教程列表
文章教程搜索
 
Asp.net推荐教程
Asp.net热门教程