ascii
string ASCII conversions
Syntax
a = ascii(txt) txt = ascii(a)
Arguments
- txt
a character string or a matrix of character strings.
- a
a vector of integer ASCII codes
Description
This function converts 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)).
If the ASCII code is out of range (eg. 0 or greater than 127) a warning
is displayed except on ascii([0 ...]) or ascii([... 0]).
Examples
ascii(["hello";"world"]) ascii("scilab") ascii([115 99 105 108 97 98])
See also
- asciimat — Converts an array of text into ASCII/UTF8 codes, and reciprocally
History
| Version | Description |
| 2026.1.0 | A warning is printed to report ASCII NUL char |
| Report an issue | ||
| << Strings | Strings | blanks >> |