I have a list of strings as follows:
tofind<-c("aaa","bbb","ccc","ddd")
I also have a vector as follows:
n<-c("aaabbb","aaa","aaacccddd","eee")
I want to find all matches of my tofind
string so that the output should be:
aaa,bbb
aaa
aaa,ccc,ddd
I think I can use str_extract_all
but it doesn't give my the expected output
library(stringr)
sapply(n, function(x) str_extract_all(n,tofind)
How do I get the expected output?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…