我已经使用grepl(以及grep)的经验
> grepl("[:alpha:]","spring")
[1] TRUE
> grepl("[:alpha:]","svg")
[1] FALSE
> grep("[:alpha:]","spring")
[1] 1
> grep("[:alpha:]","svg")
integer(0)
怎么了?
答案 0 :(得分:1)
我认为你在寻找:
grepl("[[:alpha:]]","spring")
[1] TRUE
grepl("[[:alpha:]]","svd")
[1] TRUE