Scilab 5.3.3
- 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 2025.0.0. This page might be outdated.
See the recommended documentation of this function
tokens
retorna as fichas (tokens) de um string
Seqüência de Chamamento
T=tokens(str [,delimiter])
Parâmetros
- str
string, o local de procura dos tokens
- delimiter
(opcional) um caractere ou um vetor de caracteres. Os delimitadores de fichas.
- T
vetor coluna de fichas encontradas
Descrição
T=tokens(str [,delimiter])
procura pelos tokens
inclusos no string str
. O padrão de
delimiter
é [" ",<Tab>] onde <Tab> é
ascii(9)
.
Exemplos
tokens('Isto é um string') tokens('SCI/demos/scicos','/') tokens('y=a+b*2',['=','+','*'])
Ver Também
<< tokenpos | Cadeias de Caracteres (Strings) | tree2code >> |