next up previous contents index
suivant: String defined by the monter: Strings précédent: ASCII code of a   Table des matières   Index


ASCII code of a string : asc

asc takes as argument a string s. asc returns the list of the ASCII codes of the characters of s.
Input :
asc("abcd")
Output :
[97,98,99,100]
Input :
asc("a")
Output :
[97]



giac documentation written by Renée De Graeve and Bernard Parisse