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

Posted 虚若影

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 正则提取字符串(提取一个或多个)相关的知识,希望对你有一定的参考价值。

实例一:
string result = ""; string str = "大家好! <User EntryTime=‘2010-10-7‘ Email=‘[email protected]‘>张三</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# 正则提取字符串(提取一个或多个)的主要内容,如果未能解决你的问题,请参考以下文章

C#正则表达式怎样提取匹配到的数据???

C#正则表达式提取多个结构键值

C# 正则表达式提取html中的文本

如何在 C# 中使用正则表达式从字符串中提取域名?

如何使用 R 中的正则表达式提取 2 个或多个特殊字符之间的值? [复制]

如何通过C#中的特定片段从句子中提取整个单词?