R语言中的grepl()函数用于在向量中找到指定模式时返回值True,如果未找到则返回false。
用法: grepl(pattern, string, ignore.case=FALSE)
参数:
pattern:正则表达式模式
string:要搜索的字符向量
忽略.case:是否在搜索中忽略大小写。这里 ignore.case 是一个可选参数,默认设置为 FALSE。
范例1:
# R program to illustrate
# grepl function
# Initializing a character vector
str <- c("GFG", "gfg", "Geek", "Geeks")
# Calling the grepl() function to
# find whether any instance(s) of
# ‘GF’ and 'G' are present in the string
grepl('GF', str, ignore.case ="True")
grepl('G', str, ignore.case ="True")
输出:
[1] TRUE TRUE FALSE FALSE [1] TRUE TRUE TRUE TRUE
范例2:
# R program to illustrate
# grepl function
# Initializing a character vector
str <- c("GFG", "gfg", "Geek", "Geeks")
# Calling the grepl() function to
# find whether any instance(s) of
# ‘gfg’ and 'Geek' are present in the string
grepl('gfg', str)
grepl('Geek', str)
输出:
[1] FALSE TRUE FALSE FALSE [1] FALSE FALSE TRUE TRUE
相关用法
- R语言 is.vector()用法及代码示例
- R语言 as.vector()用法及代码示例
- R语言 make.unique()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 substring()用法及代码示例
- R语言 str_detect()用法及代码示例
- R语言 seq()用法及代码示例
- R语言 as.factor()用法及代码示例
- R语言 sort()用法及代码示例
- R语言 range()用法及代码示例
- R语言 diff()用法及代码示例
- R语言 median()用法及代码示例
- R语言 cut()用法及代码示例
- R语言 rank()用法及代码示例
- R语言 cummin()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Check for a Pattern in the Vector in R Programming – grepl() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。