pmatch()
R语言中的函数用于寻找作为参数传递的模式的匹配。它返回以正在搜索的模式开头的字符串。
用法: pmatch(pat, string, nomatch)
参数:
pat:要搜索的模式向量
string:要匹配的向量
nomatch:找不到匹配时返回
范例1:
# R Program to match pattern in a string
# Creating string vector
x <- c("Geeks", "Books", "geek")
x
# Matching pattern
pmatch("gee", x)
pmatch("Boo", x)
输出:
[1] "Geeks" "Books" "geek" [1] 3 [1] 2
范例2:
# R Program to match pattern in a string
# Creating string vector
x <- c("Geeks", "Books", "geek")
x
# Matching pattern
pmatch(c("Gee", "Boo", "re"), x, nomatch = -1)
输出:
[1] "Geeks" "Books" "geek" [1] 1 2 -1
相关用法
- R语言 sub()用法及代码示例
- R语言 char.expand()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 match()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 gsub()用法及代码示例
- R语言 grepl()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 agrep()用法及代码示例
- R语言 chartr()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 sprintf()用法及代码示例
- R语言 word()用法及代码示例
- R语言 strrep()用法及代码示例
- R语言 str_detect()用法及代码示例
- R语言 strtrim()用法及代码示例
- R语言 strftime()用法及代码示例
- R语言 as.Date()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 parse()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Seek a Match for the Pattern in the String in R Programming – pmatch() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。