在 R 中用重音替换多个字母
在本文中,我们将讨论如何使用 R 编程语言将多个字母替换为重音符号。
方法一:使用图表法
R 中的 chartr() 方法用于执行字符串替换。它还用于执行字符转换和展开。
Syntax: chartr(old, new, x)
Parameter :
old : the string to be substituted
new : the string to substitute with
x : the string to use
示例:用重音替换多个字母
R
# declare character string
str <- "áéèôîáá"
# replace string
chartr("áéèôîáá","aeeoiaa", str)
R
# declare character string
str <- "áéèôîáá"
# replace string
gsub("áéèôîáá","aeeoiaa",str)
输出:
[1] aeeoiaa
方法二:使用gsub方法
基 R 中的 gsub() 方法用于执行字符串替换和替换。它用于替换指定字符串中的模式。如果找不到模式,则按原样返回字符串。
Syntax: gsub(old, new, x)
Parameter :
old : the string to be substituted
new : the string to substitute with
x : the string to use
示例:用重音替换多个字母
电阻
# declare character string
str <- "áéèôîáá"
# replace string
gsub("áéèôîáá","aeeoiaa",str)
输出:
[1] aeeoiaa