C# 正则表达式获取括号信息
我需要一个正则表达式来匹配括号中的文本。 应包含括号。 这里有些例子。
字符串:“(AB123-16W) DJ2988W61” 应匹配:“(AB123-16W)”
字符串:“(6541238 Rev. B、PS B1 & PS B2) 62MJ301-29 Rev. NC” 应匹配:“(6541238 Rev. B、PS B1 和 PS B2)”
I need a regular expression that will match text enclosed in parentheses. The parentheses should be included. Here are some examples.
String: "(AB123-16W) DJ2988W61"
Should match: "(AB123-16W)"
String: "(6541238 Rev. B, PS B1 & PS B2) 62MJ301-29 Rev. NC"
Should match: "(6541238 Rev. B, PS B1 & PS B2)"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应匹配括号中的项目:D
您可能不必在您的语言中使用分隔符(正斜杠)! 尝试使用,如果不起作用,请尝试不使用。
Should match the items in parenthesis :D
You may not have to use the delimiters ( forward slashes ) in your language! Try with, and if that doesn't work, try without.
所有结果变量都将评估为 true。
All results variables will evaluate to true.