intToUtf8()
La función en R Language se usa para convertir un número entero en un valor UTF8.
Sintaxis: intToUtf8(x, múltiple)
Parámetros:
x: entero o vector entero
múltiple: valor booleano para convertir en strings únicas o múltiples
Ejemplo 1:
# R program to convert an integer to UTF8 # Calling the intToUtf8() function intToUtf8(4) intToUtf8(10) intToUtf8(58)
Producción:
[1] "\004" [1] "\n" [1] ":"
Ejemplo 2:
# R program to convert an integer to UTF8 # Creating a vector x <- c(49, 100, 111) # Calling the intToUtf8() function intToUtf8(x) intToUtf8(x, multiple = TRUE)
Producción:
[1] "1do" [1] "1" "d" "o"
Publicación traducida automáticamente
Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA