正则表达式:计算单词列表中的匹配项
我正在尝试获取正确的语法来从单词列表中获取匹配项的数量 示例:
列表:(美国、英国、希腊、德国、尼日利亚、巴西)
文本为:“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Python 中:
说明:
In Python:
Explanation: