我想知道是否有一個現有的R函數給出了一個文本和一個字符串列表作爲輸入,將過濾掉列表中的文本中找到的匹配字符串?R文本挖掘從文本中過濾字符串
例如,
x <- "This is a new way of doing things."
mywords <- c("This is", "new", "not", "maybe", "things.")
filtered_words <- Rfunc(x, mywords)
然後filtered_words將包含 「這是」, 「新」 和 「東西」。
有沒有這樣的功能?