Scilab-Branch-5.3-GIT
      
      - Aide Scilab
- Chaînes de caractères
- eval
- evstr
- string
- ascii
- blanks
- code2str
- convstr
- emptystr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
Please note that the recommended version of Scilab is 2026.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 | Chaînes de caractères | emptystr >> |