C#正则表达式匹配
2021-04-04 01:27
阅读:377
标签:script aaa .com 技术分享 匹配 too inf 正则表达 正则 1、匹配所有带括号的字符串 string s = "aaaa(bbb)ccc(ddd)eeee"; string pattern = @"\(\w+\)"; MatchCollection results = Regex.Matches(s, pattern); C#正则表达式匹配 标签:script aaa .com 技术分享 匹配 too inf 正则表达 正则 原文地址:https://www.cnblogs.com/zhaogaojian/p/9192564.html
string pattern = "\\(\\w+\\)";
或者写成
results[0].Value=(bbb)
results[1].Value=(ddd)
测试地址
http://tools.jb51.net/regex/javascript
下一篇:C#中的类
评论
亲,登录后才可以留言!