Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.2 - Português

Change language to:
English - Français - 日本語 -

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> Cadeias de Caracteres (Strings) > strsplit

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,' ')

Ver Também

  • strcat — concatena strings
  • tokens — retorna as fichas (tokens) de um string

Autor

S. Steer

INRIA

<< strrev Cadeias de Caracteres (Strings) strspn >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu May 12 11:45:27 CEST 2011