描述
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語言 strtok()、strtok_r()用法及代碼示例
- C語言 strtol()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strtoul()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strerror()用法及代碼示例
- C語言 strpbrk()用法及代碼示例
- C語言 strnset()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strtok()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。