码迷,mamicode.com
首页 > Windows程序 > 详细

C# 正则提取字符串(提取一个或多个)

时间:2018-03-29 16:05:02      阅读:953      评论:0      收藏:0      [点我收藏+]

标签:article   res   htm   hang   gpo   success   www.   time   html   

实例一:
string result = ""; string str = "大家好! <User EntryTime=‘2010-10-7‘ Email=‘zhangsan@163.com‘>张三</User> 自我介绍。"; Regex regex = new Regex(@"<User\s*EntryTime=‘(?<time>[\s\S]*?)‘\s+Email=‘(?<email>[\s\S]*?)‘>(?<userName>[\s\S]*?)</User>", RegexOptions.IgnoreCase); Match match = regex.Match(str); if (match.Success) { string userName = match.Groups["userName"].Value; //获取用户名 string time = match.Groups["time"].Value; //获取入职时间 string email = match.Groups["email"].Value; //获取邮箱地址 string strFormat = String.Format("我是:{0},入职时间:{1},邮箱:{2}", userName, time, email); result = regex.Replace(str, strFormat); //替换内容 Console.WriteLine(result); } 实例二: var s = "http://www.baidu.com/articles/2018/3/15/sss.html"; var reg = new Regex(@"articles/(?<date>\d{4}/\d{1,2}/\d{1,2})/", RegexOptions.IgnoreCase); Match _match = reg.Match(s); if (_match.Success) { Console.WriteLine(_match.Groups["date"]); }

  

C# 正则提取字符串(提取一个或多个)

标签:article   res   htm   hang   gpo   success   www.   time   html   

原文地址:https://www.cnblogs.com/hpnet/p/8669852.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!