strtok

strtok

分解字元串為一組字元串。s為要分解的字元,delim為分隔設定字元(如果傳入字元串,則傳入的字元串中每個字元均為分割符)。首次調用時,s指向要分解的字元串,之後再次調用要把s設成NULL。

基本介紹

  • 外文名:strtok
  • 功能:分解字元串為一組字元串
  • 原型:char *strtok(char s[])
  • delim:分隔設定字元串
  • 頭檔案:string.h
原型,功能,說明,返回值,使用,

原型

char *strtok(char s[], const char *delim);

功能

分解字元串為一組字元串。s為要分解的字元串,delim為分隔設定字元串。
例如:strtok("abc,def,ghi",","),最後可以分割成為abc def ghi.尤其在點分十進制的IP中提取套用較多。
strtok的函式原型為char *strtok(char *s, char *delim),功能為“Parse S into tokens separated by characters in DELIM.If S is NULL, the saved pointer in SAVE_PTR is used as the next starting point. ” 翻譯成漢語就是:作用於字元串s,以包含在delim中的字元為分界符,將s切分成一個個子串;如果,s為空值NULL,則函式保存的指針SAVE_PTR在下一次調用中將作為起始位置。

說明

strtok()用來將字元串分割成一個個片段。參數s指向欲分割的字元串,參數delim則為分割字元串中包含的所有字元。當strtok()在參數s的字元串中發現參數delim中包含的分割字元時,則會將該字元改為\0 字元。在第一次調用時,strtok()必需給予參數s字元串,往後的調用則將參數s設定成NULL。每次調用成功則返回指向被分割出片段的指針

返回值

從s開頭開始的一個個被分割的串。當s中的字元查找到末尾時,返回NULL。
如果查找不到delim中的字元時,返回當前strtok的字元串的指針。
所有delim中包含的字元都會被濾掉,並將被濾掉的地方設為一處分割的節點。

使用

strtok函式會破壞被分解字元串的完整,調用前和調用後的s已經不一樣了。如果要保持原字元串的完整,可以使用strchr和sscanf的組合等。
c
#include<string.h>#include<stdio.h>int main(void){    char input[16]="abc,d";    char*p;    /*strtok places a NULL terminator    infront of the token,if found*/    p=strtok(input,",");    if(p)        printf("%s\n",p);        /*Asecond call to strtok using a NULL        as the first parameter returns a pointer        to the character following the token*/    p=strtok(NULL,",");    if(p)        printf("%s\n",p);    return 0;}
c++
#include<iostream>#include<cstring>using namespace std;int main(){    char sentence[]="This is a sentence with 7 tokens";    cout << "The string to be tokenized is:\n" << sentence << "\n\nThe tokens are:\n\n";    char *tokenPtr=strtok(sentence," ");    while(tokenPtr!=NULL) {        cout<<tokenPtr<<endl;        tokenPtr=strtok(NULL," ");    }    //cout << "After strtok,sentence=" << tokenPtr<<endl;    return 0;}
函式第一次調用需設定兩個參數。第一次分割的結果,返回串中第一個 ',' 之前的字元串,也就是上面的程式第一次輸出abc。
第二次調用該函式strtok(NULL,","),第一個參數設定為NULL。結果返回分割依據後面的字串,即第二次輸出d。
strtok是一個執行緒不安全的函式,因為它使用了靜態分配的空間來存儲被分割的字元串位置
執行緒安全的函式叫strtok_r,ca
運用strtok來判斷ip或者mac的時候務必要先用其他的方法判斷'.'或':'的個數,因為用strtok截斷的話,比如:"192..168.0...8..."這個字元串,strtok只會截取四次,中間的...無論多少都會被當作一個key
其他相關信息
下面的說明摘自於最新的Linux核心2.6.29,說明了這個函式已經不再使用,由速度更快的strsep()代替
/** linux/lib/string.c** Copyright (C) 1991, 1992 Linus Torvalds*//** stupid library routines.. The optimized versions should generally be found 
* as inline code in <asm-xx/string.h> 
  * These are buggy as well.. 
  * * Fri Jun 25 1999, Ingo Oeser <[email protected]> 
  * - Added strsep() which will replace strtok() soon (because strsep() is 
  * reentrant and should be faster). Use only strsep() in new code, please. 
  ** * Sat Feb 09 2002, Jason Thomas <[email protected]>, 
  * Matthew Hawkins <[email protected]> 
  * - Kissed strtok() goodbye
  */

相關詞條

熱門詞條

聯絡我們