我有以下字符串
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,但解决方案没有也给了我.