(translator=roro, ChineseSource=roro-20020509-3\strtok.html, EnglishSource=c:\matlabr12\help\techdoc\ref\strtok.html)
MATLAB Function Reference    
strtok

傳回字串的第一個標記

Syntax

Description

token = strtok('str',delimiter) 傳回在字串 str 中的第一個標記,也就是在定義符號之前的一組字元。delimiter 向量包含合理的定義符號字元。任何起始的定義符號將被忽略。

token = strtok('str') 使用預設的定義符號,也就是包括 tabs (ASCII 9), carriage returns (ASCII 13), 及 spaces (ASCII 32) 等的字元。任何起始的定義符號將被忽略。

[token,rem] = strtok(...) token 為字串中的第一個標記,而 rem 則是除了 token 外剩下的所有字元。

Examples

See Also

findstr, strmatch


 strrep struct