Name
ascii — string ascii conversions
Calling Sequence
a=ascii(txt)
txt=ascii(a)
Parameters
- txt
A character string or a matrix of character strings.
- a
A vector of integer ascii codes
Description
This function convert Scilab string to a vector of ascii code (the first 127 codes are ASCII) or
vector of ascii code to Scilab strings.
If txt
is a matrix of string,
ascii(txt)
is equivalent to
ascii(strcat(txt))
Examples
ascii(["hello";"world"])
ascii("scilab")
ascii([115 99 105 108 97 98])