strtoi()
La función en R Language se usa para convertir la string especificada en números enteros.
Sintaxis: strtoi(x, base=0L)
Parámetros:
x: vector de caracteres
base: número entero entre 2 y 36 inclusive, el valor predeterminado es 0
Ejemplo 1:
# R program to illustrate # strtoi function # Initializing some string vector x <- c("A", "B", "C") y <- c("1", "2", "3") # Calling strtoi() function strtoi(x, 16L) strtoi(y)
Producción :
[1] 10 11 12 [1] 1 2 3
Ejemplo 2:
# R program to illustrate # strtoi function # Calling strtoi() function over # some specified strings strtoi(c("0xff", "023", "567")) strtoi(c("ffff", "FFFF"), 16L) strtoi(c("246", "135"), 8L)
Producción:
[1] 255 19 567 [1] 65535 65535 [1] 166 93
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