正则表达式和字符串

发布于 2024-12-12 04:33:43 字数 293 浏览 0 评论 0原文

考虑以下事项:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

情痴 2024-12-19 04:33:43

第一个代码片段中的最后一个 \b 前面需要一个逐字字符串说明符 (@),并且它是一个单独的字符串实例。

string keywords = "(load|save|close)"; 
Regex x = new Regex(@"\b"+keywords+@"\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.

string keywords = "(load|save|close)"; 
Regex x = new Regex(@"\b"+keywords+@"\b");  
一人独醉 2024-12-19 04:33:43

您缺少另一个逐字字符串说明符(最后一个 \b 前面的 @ 前缀):

Regex x = new Regex(@"\b" + keywords + @"\b");

You're missing another verbatim string specifier (@ prefixed to the last \b):

Regex x = new Regex(@"\b" + keywords + @"\b");
拥抱没勇气 2024-12-19 04:33:43
Regex x = new Regex(@"\b"+keywords+@"\b");

您在第二个 "\b" 之前忘记了额外的 @

Regex x = new Regex(@"\b"+keywords+@"\b");

You forgot additional @ before second "\b"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文