标签: regex rstudio data-analysis text-mining
如图所示,我需要删除单词“ 请”之后的所有内容,而不考虑position of word "Please"。
position of word "Please"
我尝试regex删除“ .”之后的所有内容,为此我需要采用其他方法
regex
.
任何帮助将不胜感激。
答案 0 :(得分:0)
请尝试使用此正则表达式(\ bPlease \ b)(?!。* \ 1)
https://regex101.com/r/9wWAlG/1