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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。