La función chartr() en el lenguaje de programación R se usa para hacer sustituciones de strings. Reemplaza todas las coincidencias de los caracteres existentes de una string con los nuevos caracteres especificados como argumentos.
Sintaxis: chartr(antiguo, nuevo, x)
Parámetros:
- old: string antigua a sustituir
- nuevo: nueva string
- x: string de destino
Ejemplo 1:
R
# 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)
Producción :
[1] "Zeeks ZFZ"
Ejemplo 2:
R
# 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)
Producción:
[1] "1ee23for1ee23 1ee23"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA