I have two lists:
a <- c("da", "ba", "cs", "dd", "ek")
b <- c("zyc", "ulk", "mae", "csh", "ddi", "dada")
I want to remove the elements from list b which would have a substring match with any of the values in a, e.g.
grepl("da","dada") # TRUE
How would you go about doing this efficiently?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…