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
convstr
case conversion
Calling Sequence
[y]=convstr(str, [flag])
Arguments
- str, y
A matrix of character strings
- flag
A character option with possible values
- 'u'
for upper
- 'l'
for lower
Description
converts the matrix of strings str-matrix
into lower case (for "l"
;default value) or
upper case (for "u"
).
Examples
A=['this','is';'my','matrix']; convstr(A,'u')
<< code2str | Strings | emptystr >> |