R 语言中的 agrep() 函数用于在给定字符串的每个元素内搜索与模式的近似匹配。
用法:
agrep(pattern, x, ignore.case=FALSE, value=FALSE)
参数:
pattern: Specified pattern which is going to be matched with given elements of the string.
x: Specified string vector.
ignore.case: If its value is TRUE, it ignore case.
value: If its value is TRUE, it return the matching elements vector, else return the indices vector.
范例1:
Python3
# R program to illustrate
# agrep function
# Creating string vector
x <- c("GFG", "gfg", "Geeks", "GEEKS")
# Calling agrep() function
agrep("gfg", x)
agrep("Geeks", x)
agrep("gfg", x, ignore.case = TRUE)
agrep("Geeks", x, ignore.case = TRUE)
输出:
[1] 2 [1] 3 [1] 1 2 [1] 3 4
范例2:
Python3
# R program to illustrate
# agrep function
# Creating string vector
x <- c("GFG", "gfg", "Geeks", "GEEKS")
# Calling agrep() function
agrep("gfg", x, ignore.case = TRUE, value = TRUE)
agrep("G", x, ignore.case = TRUE, value = TRUE)
agrep("Geeks", x, ignore.case = FALSE, value = FALSE)
agrep("GEEKS", x, ignore.case = FALSE, value = FALSE)
输出:
[1] "GFG" "gfg" [1] "GFG" "gfg" "Geeks" "GEEKS" [1] 3 [1] 4
相关用法
- R语言 match()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 chartr()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 sprintf()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 word()用法及代码示例
- R语言 strrep()用法及代码示例
- R语言 str_detect()用法及代码示例
- R语言 gsub()用法及代码示例
- R语言 sub()用法及代码示例
- R语言 strtrim()用法及代码示例
- R语言 pmatch()用法及代码示例
- R语言 strftime()用法及代码示例
- R语言 as.Date()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 parse()用法及代码示例
- R语言 deparse()用法及代码示例
- R语言 dunif()用法及代码示例
- R语言 lapply()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Matching of patterns in a String in R Programming – agrep() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。