欢迎光临
我们一直在努力

正则表达式中的组集合的使用_asp.net技巧

建站超值云服务器,限时71元/月

简单实例:


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

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 正则表达式中的组集合的使用_asp.net技巧
分享到: 更多 (0)