如何在python字符串中的另一个单词之后选择所有带有标点符号的单词

时间:2018-11-06 12:31:59

标签: python regex python-3.x

我有以下字符串

text_clean = 'i am a person. i believe i can fly. i believe i can touch the sky.'

和单词

wd = 'can'

我想获得wd之后的所有单词,但与.(如果存在)一起一起。所以我想得到['fly.', 'touch']

我尝试过

import re
re.findall(r'{} \b(\S+)\b'.format(wd),text_clean)

根据this question,但解决方案没有也给了我.

0 个答案:

没有答案