Scilab 5.3.3
- Scilab help
- Strings
- ascii
- blanks
- code2str
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
ascii
string ascii conversions
Calling Sequence
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 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])
See Also
<< Strings | Strings | blanks >> |