Scilab-Branch-6.1-GIT
- Aide de Scilab
- Chaînes de caractères
- 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
strtok
split string into tokens
Syntax
res = strtok(str, delimiters)
Arguments
- str
a character string.
- delimiters
a character string.
- res
a character string.
Description
res = strtok(str, delimiters)
sequence of calls to
this function split str
into tokens, which are
sequences of contiguous characters separated by any of the
characters that are part of delimiters
.
Examples
TOKENS = []; token = strtok("A string of ,,tokens and some more tokens"," r,"); TOKENS = [TOKENS,token]; while( token <> '' ) token = strtok(" r,"); TOKENS = [TOKENS,token]; end disp(TOKENS);
See also
Report an issue | ||
<< strtod | Chaînes de caractères | tokenpos >> |