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
Scilab help >> Strings > code2str
code2str
returns character string associated with Scilab integer codes.
Calling Sequence
str=code2str(c)
Arguments
- str
A character string
- c
vector of character integer codes
Description
Returns character string associated with Scilab integer codes.str is such that c(i) is the Scilab integer code of part(str,i))
Examples
code2str([-28 12 18 21 10 11]) str2code('Scilab')'
See Also
| << blanks | Strings | convstr >> |