當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R語言 grepl()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Check for a Pattern in the Vector in R Programming – grepl() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。