关注图老师设计创意栏目可以让大家能更好的了解电脑,知道有关于电脑的更多有趣教程,今天给大家分享正则表达式中的组集合的使用教程,希望对大家能有一点小小的帮助。
【 tulaoshi.com - Web开发 】
简单实例:
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/) string s = "2005-2-21";
Regex reg = new Regex(@"(?yd{4})-(?md{1,2})-(?dd{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);
来源:http://www.tulaoshi.com/n/20160219/1624964.html
看过《正则表达式中的组集合的使用》的人还看了以下文章 更多>>