当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 pmatch()用法及代码示例


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

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Seek a Match for the Pattern in the String in R Programming – pmatch() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。