Answers for "replace accented characters r"

R
2

r convert accented characters

library(stringi)
stri_trans_general("àáçõê", "Latin-ASCII")
# aacoe
Posted by: Guest on February-15-2021
1

replace accented characters in r

string = "ábçdêfgàõp"
iconv(string, to='ASCII//TRANSLIT')
Output: "abcdefgaop"
Posted by: Guest on July-28-2020

Code answers related to "replace accented characters r"

Browse Popular Code Answers by Language