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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。