next up previous contents index
suivant: Find a character in monter: Strings précédent: ASCII code of a   Table des matières   Index


String defined by the ASCII codes of its characters : char

char takes as argument a list l of ASCII codes.
char returns the string whose characters have as ASCII codes the elements of the list l.
Input :
char([97,98,99,100])
Output :
"abcd"
Input :
char(97)
Output :
"a"
Input :
char(353)
Output :
"a"
En effet 353-256=97.



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