utf8ToInt()
La función en R Language se usa para convertir un valor UTF8 en un valor entero.
Sintaxis: utf8ToInt(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 a UTF8 to Integer # Calling the utf8ToInt() function utf8ToInt("[") utf8ToInt("+") utf8ToInt(":")
Producción:
[1] 91 [1] 43 [1] 58
Ejemplo 2:
# R program to convert a UTF8 to Integer # Creating a vector x1 <- c("&@\n") x2 <- c("[+:") x3 <- c("1d<U>") # Calling the utf8ToInt() function utf8ToInt(x1) utf8ToInt(x2) utf8ToInt(x3)
Producción:
[1] 38 64 10 [1] 91 43 58 [1] 49 100 60 85 62
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