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