查找另一个单词之前和之后的单词

时间:2019-05-23 20:19:46

标签: regex python-3.x nlp

背景

以下代码段使我可以选择一个关键字(例如"Front"

import re
text = "My dog is running down Front street because she is chasing a cat"
find = ["Front"]

words=re.findall("\n+",text)
result = [words for words in find if words in text.split()]

我看过R regular expression (near words)find word near another using stringr。它们都相似,但不完全是我想要的。

目标:

我想使用正则表达式(或其他任何可行的方法)检索在{strong>之前和之后的前5个单词。

问题

有什么想法吗?

0 个答案:

没有答案