Scilab 6.0.1
- Scilab Help
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
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
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))
.
Examples
ascii(["hello";"world"]) ascii("scilab") ascii([115 99 105 108 97 98])
See also
- asciimat — string matrix ASCII conversions
Report an issue | ||
<< Strings | Strings | asciimat >> |