Scilab 6.1.0
      
      - Ajuda do Scilab
 - Cadeias de Caracteres (Strings)
 - ascii
 - asciimat
 - blanks
 - char
 - convstr
 - emptystr
 - evstr
 - grep
 - isalphanum
 - isascii
 - isdigit
 - isletter
 - isnum
 - justify
 - length
 - part
 - prettyprint
 - regexp
 - sci2exp
 - strcat
 - strchr
 - strcmp
 - 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 2026.0.0. This page might be outdated.
See the recommended documentation of this function
strsplit
divide um string em um vetor de strings
Seqüência de Chamamento
v = strsplit(str,ind)
Parâmetros
- str
 string
- ind
 um vetor de índices estritamente crescentes no intervalo
[1 length(str)-1].- v
 o vetor coluna resultante de strings (dimensão
size(ind,'*')+1).
Descrição
v= strsplit(str,ind) divide o string
            str em um vetor de strings nos pontos dados pelos
            índices em ind (após cada caractere apontado pelo
            índice em ind).
Exemplos
S='strsplit divide um string em um vetor de strings'; strsplit(S,[15 25 30]) ind=strindex(S,' ')
| Report an issue | ||
| << strrev | Cadeias de Caracteres (Strings) | strspn >> |