Scilab-Branch-5.3-GIT
      
      - Ajuda Scilab
- Cadeias de Caracteres (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 2026.0.0. This page might be outdated.
See the recommended documentation of this function
convstr
conversão maiúsculas-minúsculas, minúsculas-maiúsculas
Seqüência de Chamamento
[y]=convstr(str, [flag])
Parâmetros
- str, y
- uma matriz de strings 
- flag
- um caractere de opção com dois possíveis valores - 'u'
- para maiúsculas 
- 'l'
- para minúsculas 
 
Descrição
converts a matriz de strings str-matrix para
    caracteres minúsculos ("l" ; valor padrão) ou para
    maiúsculos ("u").
Exemplos
A=['esta','é';'a minha','matriz']; convstr(A,'u')
| << code2str | Cadeias de Caracteres (Strings) | emptystr >> |