如何匹配单词中的所有内容

时间:2018-02-08 19:59:25

标签: python regex nlp

如果标题不清楚,请抱歉。

更具体地说,使用python,我希望匹配I am (INSERT ANYTHING)ingI am dancing之类的I am walking而不是I am a student and I like dancing

如果我使用(?<=I am)(.*)(?=ing),则会匹配I am a student and I like dancing

所以(INSERT ANYTHING)ing应该是一个字。反正有吗?

1 个答案:

答案 0 :(得分:3)

对于你所描述的内容,你不需要外观,只需要一个模式,然后才会出现问题。没有任何空格:

r"I am ([a-zA-Z]+)ing"