Scilab-Branch-6.1-GIT
- Scilabヘルプ
- 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
strtok
文字列をトークンに分割
呼び出し手順
res = strtok(str, delimiters)
引数
- str
文字列
- delimiters
文字列
- res
文字列
説明
res = strtok(str, delimiters)
この関数を連続してコールすることにより,
str
をトークンに分割します.
トークンはdelimiters
の文字のどれかで
区切られた連続する一連の文字です.
例
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);
Report an issue | ||
<< strtod | Strings | tokenpos >> |