标签: r
我正在尝试用两个连续的重复单词找到所有字符串集,例如“the the”,“air air”。我在R中使用grepl函数,我的代码如下所示:
grepl("[a-zA-Z]+\\s+\1", c("the the", "Humbert Humbert", "air water"), perl = TRUE)
[1]假错误
字符串“the the”和“air air”应该返回TRUE但它返回FALSE,这是我不知道为什么。
我的代码中是否有任何遗漏?请帮帮我。