Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert characters into ASCII code?

Tags:

I need to translate a string of characters, for example "Hello", into a string of numbers which is the ASCII numeric codes.

Example: 0 -> 48; a -> 97, etc.

Does anyone know an R function to do this? Hopefully, the function or piece of code will translate "Hello" into a numeric string like

c(72, 101, 108, 108, 111) 
like image 541
Ender Avatar asked Aug 22 '15 21:08

Ender


1 Answers

I guess you mean utf8ToInt, see the R manuals:

utf8ToInt("Hello") # [1]  72 101 108 108 111 

Or, if you want a mapping of the letters to their codes:

sapply(strsplit("Hello", NULL)[[1L]], utf8ToInt) #  H   e   l   l   o  # 72 101 108 108 111  
like image 104
PhilMasteG Avatar answered Sep 29 '22 16:09

PhilMasteG