R 語言中的 charmatch() 函數用於查找兩個參數之間的匹配。
用法: charmatch(x, table, nomatch = NA_integer_)
參數:
x: the values to be matched
table: the values to be matched against
nomatch: the integer value to be returned at non-matching position
範例1:
Python3
# R program to illustrate
# charmatch function
# Calling the charmatch() function
charmatch("Geeks", c("Geeks", "forGeeks"))
charmatch("for", c("Geeks", "forGeeks"))
charmatch("forGeeks", c("Geeks", "forGeeks", "GeeksforGeeks"))
charmatch("GeeksforGeeks", c("Geeks", "forGeeks", "GeeksforGeeks"))
輸出:
[1] 1 [1] 2 [1] 2 [1] 3
範例2:
Python3
# R program to illustrate
# charmatch function
# Calling the charmatch() function
charmatch("an", "sand")
charmatch("and", "sand")
charmatch("sand", "sand")
輸出:
[1] NA [1] NA [1] 1
相關用法
- R語言 as.vector()用法及代碼示例
- R語言 is.vector()用法及代碼示例
- R語言 char.expand()用法及代碼示例
- R語言 sub()用法及代碼示例
- R語言 match()用法及代碼示例
- R語言 pmatch()用法及代碼示例
- R語言 range()用法及代碼示例
- R語言 uniroot()用法及代碼示例
- R語言 make.unique()用法及代碼示例
- R語言 replace()用法及代碼示例
- R語言 substring()用法及代碼示例
- R語言 str_detect()用法及代碼示例
- R語言 seq()用法及代碼示例
- R語言 as.factor()用法及代碼示例
- R語言 sort()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting Match of an Element within a Vector in R Programming – charmatch() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。