意外的grepl行为:某些字符串返回false

时间:2014-07-02 09:55:32

标签: regex r grep

我已经使用grepl(以及grep)的经验

> grepl("[:alpha:]","spring")
[1] TRUE
> grepl("[:alpha:]","svg")
[1] FALSE

> grep("[:alpha:]","spring")
[1] 1
> grep("[:alpha:]","svg")
integer(0)

怎么了?

1 个答案:

答案 0 :(得分:1)

我认为你在寻找:

grepl("[[:alpha:]]","spring")
[1] TRUE
grepl("[[:alpha:]]","svd")
[1] TRUE