所需关键字的正则表达式?

发布于 2024-11-07 09:33:35 字数 150 浏览 0 评论 0原文

我有一个 C# 系统,其中需要一组关键字。如果关键字存在,则必须检查两个字段。

最初,我编写了一个 foreach 循环来遍历每个关键字,然后循环结果并检查。但是,这有点低效,因为在检查时,我想查看给定字符串中是否存在任何关键字,而不是逐一查看。

谢谢。

I've got a system in C# where by a set of keywords are required. Two fields have to be checked if the keywords exist.

Initially I wrote a foreach loop to go through each keyword, then cycle through the results and check. However, this is somewhat inefficient, as on check, I would like to see if any of the keywords exist in a given string, rather than one by one.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

浮生面具三千个 2024-11-14 09:33:35

这个问题与您想要做的事情匹配吗?

答案向您展示如何使用正则表达式一次性匹配多个可能的单词

Does this question match what you are trying to do?

The answer shows you how to match multiple possible words in one go with a regex

纵情客 2024-11-14 09:33:35

((keyword1)|(keyword2)|(keyword3))

我不确定 c# 到底如何执行正则表达式,但这应该匹配并返回匹配项。

您可以在此处测试正则表达式

((keyword1)|(keyword2)|(keyword3))

Im not sure exactly how c# does regex but this should match and return matches.

You can test regexes here

泼猴你往哪里跑 2024-11-14 09:33:35

如果你使用的是 c# 3.5+ 试试这个

        Regex r1 = new Regex("MyKeywordRegex");
        IEnumerable<MyResultClass> results = GetMyResults();
        var myFilteredResults = results.Any(a => (r1.IsMatch(a.Field)));

If you are on c# 3.5+ try this

        Regex r1 = new Regex("MyKeywordRegex");
        IEnumerable<MyResultClass> results = GetMyResults();
        var myFilteredResults = results.Any(a => (r1.IsMatch(a.Field)));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文