R 语言中的 chartr() 函数用于进行字符串替换。它用指定为参数的新字符替换字符串中现有字符的所有匹配项。
用法: chartr(old, new, x)
参数:
old:要替换的旧字符串
new:新字符串
x:目标字符串
范例1:
# R program to illustrate
# chartr function
# Initializing a string
x <- "Geeks GFG"
# Calling the chartr() function
# which will substitute G with Z
# to the above specified string
chartr("G", "Z", x)
输出:
[1] "Zeeks ZFZ"
范例2:
# R program to illustrate
# chartr function
# Initializing a string
x <- "GeeksforGeeks Geeks"
# Calling the chartr() function
# which will substitute G with 1,
# k with 2 and s with 3
# to the above specified string
chartr("Gks", "123", x)
输出:
[1] "1ee23for1ee23 1ee23"
相关用法
- R语言 is.primitive()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 agrep()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 sprintf()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 word()用法及代码示例
- R语言 strrep()用法及代码示例
- R语言 str_detect()用法及代码示例
- R语言 gsub()用法及代码示例
- R语言 sub()用法及代码示例
- R语言 strtrim()用法及代码示例
- R语言 pmatch()用法及代码示例
- R语言 strftime()用法及代码示例
- R语言 as.Date()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 parse()用法及代码示例
- R语言 deparse()用法及代码示例
- R语言 dunif()用法及代码示例
- R语言 lapply()用法及代码示例
- R语言 optimize()用法及代码示例
- R语言 lgamma()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Substitute characters of a String in R Programming – chartr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。