正则表达式:计算单词列表中的匹配项

发布于 2025-01-03 20:06:21 字数 262 浏览 1 评论 0原文

我正在尝试获取正确的语法来从单词列表中获取匹配项的数量 示例:

列表:(美国、英国、希腊、德国、尼日利亚、巴西)

文本为:“Cake returns put Brazil Welcome Stack to Between paragraphs Argentina Overflow UK”

我想知道上面列表中有多少个单词在此出现带有正则表达式模式的文本。 或者,我想知道文本中的列表中是否有超过 1 个匹配项

是否可以使用正则表达式来做到这一点?

I'm trying to get the right syntax for getting the number of matches from list of words
example:

List: (US,UK,Greece,Germany,Nigeria,Brazil)

The text is: "Cake returns put Brazil Welcome Stack to between paragraphs Argentina Overflow UK"

I would like to know how many words from the list above appear in this text with a regex pattern.
Alternative, I would like to know if there more than 1 match from the list in the text

Is it possible to do that with Regex?

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

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

发布评论

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

评论(1

猫七 2025-01-10 20:06:21

在 Python 中:

>>> import re
>>> countries = re.compile(r"\b(?:US|UK|Greece|Germany|Nigeria|Brazil)\b")
>>> text = "Cake returns put Brazil Welcome Stack to between paragraphs Argentina Overflow UK"
>>> len(countries.findall(text))
2

说明:

\b      # Word boundary (start of word)
(?:     # Match either...
 US     # US
|       # or
 UK     # UK
|       # or
 Greece # Greece (etc.)
)       # End of alternation
\b      # Word boundary (end of word)

In Python:

>>> import re
>>> countries = re.compile(r"\b(?:US|UK|Greece|Germany|Nigeria|Brazil)\b")
>>> text = "Cake returns put Brazil Welcome Stack to between paragraphs Argentina Overflow UK"
>>> len(countries.findall(text))
2

Explanation:

\b      # Word boundary (start of word)
(?:     # Match either...
 US     # US
|       # or
 UK     # UK
|       # or
 Greece # Greece (etc.)
)       # End of alternation
\b      # Word boundary (end of word)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文