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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。