标签: r
我有两个不同的载体
v1 <- c("HelloWorld", "Climate","fooboo","testtesting") v2 <- c("hello","test")
我想比较矢量和需要得到&#34; HelloWorld&#34;和&#34; testingtestin&#34; 。
我使用了regexpr,但我没有得到结果。
sapply(v1 , regexpr, v2 , ignore.case=TRUE)