C 庫函數(shù) - strtok()

C 標準庫 - <string.h> C 標準庫 - <string.h>

描述

C 庫函數(shù) char *strtok(char *str, const char *delim) 分解字符串 str 為一組字符串,delim 為分隔符。

聲明

下面是 strtok() 函數(shù)的聲明。

char *strtok(char *str, const char *delim)

參數(shù)

  • str -- 要被分解成一組小字符串的字符串。
  • delim -- 包含分隔符的 C 字符串。

返回值

該函數(shù)返回被分解的最后一個子字符串,如果沒有可檢索的字符串,則返回一個空指針。

實例

下面的實例演示了 strtok() 函數(shù)的用法。

#include <string.h>
#include <stdio.h>

int main()
{
   const char str[80] = "This is - hgci.cn - website";
   const char s[2] = "-";
   char *token;
   
   /* 獲取第一個子字符串 */
   token = strtok(str, s);
   
   /* 繼續(xù)獲取其他的子字符串 */
   while( token != NULL ) 
   {
      printf( " %s\n", token );
    
      token = strtok(NULL, s);
   }
   
   return(0);
}

讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果:

This is 
hgci.cn 
website

C 標準庫 - <string.h> C 標準庫 - <string.h>