stringr-----str_detect
主页:https://cran.r-project.org/web/packages/stringr/index.html
#安装stringr包> install.packages('stringr')> library(stringr)
#stringr函数分类:
字符串拼接函数
字符串计算函数
字符串匹配函数
字符串变换函数
参数控制函数
#stringr字符串匹配函数
str_detect(string, pattern)
string: 字符串,字符串向量。 pattern: 匹配字符。
#匹配字符串的字符
> val <- c("abca4", 123, "cba2") # 检查字符串向量,是否包括a > str_detect(val, "a") [1] TRUE FALSE TRUE # 检查字符串向量,是否以a为开头 > str_detect(val, "^a") [1] TRUE FALSE FALSE # 检查字符串向量,是否以a为结尾 > str_detect(val, "a$") [1] FALSE FALSE FALSE
赞 (0)