当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 chartr()用法及代码示例


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"

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Substitute characters of a String in R Programming – chartr() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。