I need to translate a character string, such as "Hello" , into a string of numbers, which is an ASCII numeric code.
Example: 0 -> 48; a -> 97 0 -> 48; a -> 97 etc.
Does anyone know the R function for this? Hope a function or code snippet converts "Hello" to a number string, for example
c(72, 101, 108, 108, 111)
Ender source share