Scilab-Branch-6.1-GIT
- 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
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
tokens
Divide um texto usando separadores e fornece seus pedaços
Seqüência de Chamamento
Chunks = tokens(text) Chunks = tokens(text, separators)
Parâmetros
- text
- Um único texto a ser dividido. Pode incluir caracteres internacionais UTF-8 estendidos.
- separators
- Vetor de caracteres. Valor padrão =
[" ",ascii(9)]
, ascii(9) sendo a tabulação horizontal. - Chunks
- Vetor da coluna: partes do texto dividido.
Descrição
tokens(…)
pesquisa no texto os separadores fornecidos,
e divide em pedaços. Os pedaços são sem separadores.
Separadores consecutivos são mesclados.
Exemplos
tokens("The given text") tokens("SCI/demos/scicos", "/")' tokens("Επιστήμη και καινοτομία", ["α"," "])' nbsp = ascii(160); // non-breakable space t = "the" + nbsp + "given text" tokens(t)
--> tokens('The given text') ans = "The" "given" "text" --> tokens('SCI/demos/scicos', '/')' ans = "SCI" "demos" "scicos" --> tokens("Επιστήμη και καινοτομία", ["α"," "])' ans = "Επιστήμη" "κ" "ι" "κ" "ινοτομί" --> nbsp = ascii(160); // non-breakable space --> t = "the" + nbsp + "given text" t = "the given text" --> tokens(t) ans = "the given" "text"
Ver Também
Report an issue | ||
<< tokenpos | Cadeias de Caracteres (Strings) | Manipulação de Arquivos de Som >> |