正则表达式和字符串
考虑以下事项:
string keywords = "(load|save|close)";
Regex x = new Regex(@"\b"+keywords+"\b");
我没有得到任何匹配项。但是,如果我这样做:
Regex x = new Regex(@"\b(load|save|close)\b");
我会得到匹配项。为什么前者不起作用,我该如何解决这个问题?基本上,我希望关键字是可配置的,因此我将它们放在一个字符串中。
Consider the following:
string keywords = "(load|save|close)";
Regex x = new Regex(@"\b"+keywords+"\b");
I get no matches. However, if I do this:
Regex x = new Regex(@"\b(load|save|close)\b");
I get matches. How come the former doesn't work, and how can I fix this? Basically, I want the keywords to be configurable so I placed them in a string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
第一个代码片段中的最后一个
\b
前面需要一个逐字字符串说明符 (@
),并且它是一个单独的字符串实例。The last
\b
in the first code snippet needs a verbatim string specifier (@
) in front of it as well as it is a seperate string instance.您缺少另一个逐字字符串说明符(最后一个
\b
前面的@
前缀):You're missing another verbatim string specifier (
@
prefixed to the last\b
):您在第二个
"\b"
之前忘记了额外的@
You forgot additional
@
before second"\b"