R语言 查找一个匹配模式在字符串中的位置 – grep()函数
R语言中的 grep() 函数用于在给定字符串的每个元素中搜索模式的匹配。
语法:
grep(pattern, x, ignore.case=TRUE/FALSE, value=TRUE/FALSE)
参数:
pattern: 指定的模式,将与给定的字符串元素进行匹配。
x: 指定的字符串向量。
ignore.case: 如果其值为TRUE,将忽略大小写。
value: 如果其值为TRUE,将返回匹配元素向量,否则返回指数向量。
例1:
# R program to illustrate
# grep function
# Creating string vector
x <- c("GFG", "gfg", "Geeks", "GEEKS")
# Calling grep() function
grep("gfg", x)
grep("Geeks", x)
grep("gfg", x, ignore.case = FALSE)
grep("Geeks", x, ignore.case = TRUE)
输出 :
[1] 2
[1] 3
[1] 2
[1] 3 4
例2:
# R program to illustrate
# grep function
# Creating string vector
x <- c("GFG", "gfg", "Geeks", "GEEKS")
# Calling grep() function
grep("gfg", x, ignore.case = TRUE, value = TRUE)
grep("G", x, ignore.case = TRUE, value = TRUE)
grep("Geeks", x, ignore.case = FALSE, value = FALSE)
grep("GEEKS", x, ignore.case = FALSE, value = FALSE)
输出:
[1] "GFG" "gfg"
[1] "GFG" "gfg" "Geeks" "GEEKS"
[1] 3
[1] 4