當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C語言 strtok()用法及代碼示例



描述

C庫函數char *strtok(char *str, const char *delim)斷線str使用分隔符轉換為一係列標記delim

聲明

以下是 strtok() 函數的聲明。

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

參數

  • str─ 這個字符串的內容被修改並分解成更小的字符串(令牌)。

  • delim─ 這是包含分隔符的 C 字符串。這些可能因一個調用而異。

返回值

此函數返回指向字符串中找到的第一個標記的指針。如果沒有要檢索的標記,則返回空指針。

示例

下麵的例子展示了 strtok() 函數的用法。

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

int main () {
   char str[80] = "This is - www.tutorialspoint.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\n", token );
    
      token = strtok(NULL, s);
   }
   
   return(0);
}

讓我們編譯並運行上麵的程序,它會產生以下結果——

This is 
  www.tutorialspoint.com 
  website

相關用法


注:本文由純淨天空篩選整理自 C library function - strtok()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。