Convertir valor de carácter a valor ASCII en programación R – Función charToRaw()

La función charToRaw() en R Language se usa para convertir el carácter dado a su valor ASCII correspondiente u objetos «sin procesar».
 

Sintaxis: charToRaw(x)
Parámetros:  
x: Caracteres dados a convertir 
 

Ejemplo 1: 
 

Python3

# R program to illustrate
# charToRaw function
 
# Calling charToRaw() function over
# some alphabets
x <- charToRaw("a")
y <- charToRaw("A")
z <- charToRaw("ab")
 
# Getting the corresponding ASCII value
x
y
z

Producción : 
 

[1] 61
[1] 41
[1] 61 62

Ejemplo 2: 
 

Python3

# R program to illustrate
# charToRaw function
 
# Initializing some strings
a <- "Geeks"
b <- "GFG is a CS Portal"
 
# Calling charToRaw() function
# over above strings
c <- charToRaw(a)
d <- charToRaw(b)
 
# Getting the ASCII values of the above
# specified strings
c
d

Producción: 
 

[1] 47 65 65 6b 73
[1] 47 46 47 20 69 73 20 61 20 43 53 20 50 6f 72 74 61 6c

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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *