MATLAB Function Reference | ![]() ![]() |
Syntax
Description
token = strtok('
returns the first token in the text string str
',delimiter)
str
, that is, the first set of characters before a delimiter is encountered. The vector del
imiter contains valid delimiter characters. Any leading delimiters are ignored.
token = strtok('
uses the default delimiters, the white space characters. These include tabs (ASCII 9), carriage returns (ASCII 13), and spaces (ASCII 32). Any leading white space characters are ignored.str
')
[token,rem] = strtok(...)
returns the remainder rem
of the original string. The remainder consists of all characters from the first delimiter on.
Examples
See Also
![]() | strrep | struct | ![]() |