C庫函式 char *strtok(char *str, const char *delim) 分解字串str中的令牌使用delimitrer分隔轉換為一系列。
以下是宣告為strtok() 函式。
char *strtok(char *str, const char *delim)
src -- 這個字串的內容被修改,分解成較小的字串(令牌)。
delim -- 這是C字串,其中包含分隔符。這些可能會有所不同,從一個呼叫到另一個。
這個函式返回一個指標,字串中發現的最後一個令牌。如果沒有令牌剩下檢索,返回空指標。
下面的例子顯示了函式strtok() 函式的用法。
#include <string.h> #include <stdio.h> int main() { const char str[80] = "This is - www.tw511.com - website"; const char s[2] = "-"; char *token; /* get the first token */ token = strtok(str, s); /* walk through other tokens */ while( token != NULL ) { printf( " %s ", token ); token = strtok(NULL, s); } return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
This is www.tw511.com website