R 语言中的 char.expand() 函数用于在其第二个元素中寻找其第一个参数的唯一匹配。如果成功,则返回该元素;否则,它将执行由第三个参数指定的操作。
用法: char.expand(input, target, nomatch = stop(“no match”))
参数:
input: character string to be expanded
target:character vector with the values to be matched against
nomatch: an R expression to be evaluated in case expansion was not possible
范例1:
Python3
# R program to illustrate
# char.expand function
# Creating string vector
x <- c("sand", "and", "land")
# Calling char.expand() function
char.expand("a", x, warning("no expand"))
char.expand("an", x, warning("no expand"))
char.expand("and", x, warning("no expand"))
输出:
[1] "and" [1] "and" [1] "and"
范例2:
Python3
# R program to illustrate
# char.expand function
# Creating string vector
x <- c("sand", "and", "land")
# Calling char.expand() function
char.expand("G", x, warning("no expand"))
输出:
[1] NA Warning message: In eval(nomatch):no expand
相关用法
- R语言 make.unique()用法及代码示例
- R语言 match()用法及代码示例
- R语言 charmatch()用法及代码示例
- R语言 sub()用法及代码示例
- R语言 pmatch()用法及代码示例
- R语言 unique()用法及代码示例
- R语言 lapply()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 topo.colors()用法及代码示例
- R语言 cm.colors()用法及代码示例
- R语言 terrain.colors()用法及代码示例
- R语言 setdiff()用法及代码示例
- R语言 is.element()用法及代码示例
- R语言 paste0()用法及代码示例
- R语言 replace()用法及代码示例
- R语言 seq()用法及代码示例
- R语言 order()用法及代码示例
- R语言 diff()用法及代码示例
- R语言 names()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Seeking a unique match of elements in R Programming – char.expand() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。