strtok

目录

原型

  char *strtok(char *s, char *delim);

功能

  分解字符串为一组字符串。s为要分解的字符串,delim为分隔符字符串。

说明

  首次调用时,s指向要分解的字符串,之后再次调用要把s设成NULL。
  strtok在s中查找包含在delim中的字符并用NULL('')来替换,直到找遍整个字符串。
  char * p = strtok(s,";");
  p = strtok(null,";");
  在调用的过程中,字串s被改变了,这点是要注意的。

返回值

  从s开头开始的一个个被分割的串。当没有被分割的串时则返回NULL。
  所有delim中包含的字符都会被滤掉,并将被滤掉的地方设为一处分割的节点。

strtok函数在C和C++语言中的使用

  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
  in front of the token, if found */
  p = strtok(input, ",");
  if (p) printf("%s\n", p);
  /**/ /* A second 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<<'\n';
  tokenPtr=strtok(NULL," ");
  }
  cout<<"After strtok, sentence = "<<sentence<<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 <ioe@informatik.tu-chemnitz.de>
  * - 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 <jason@topic.com.au>,
  * Matthew Hawkins <matt@mh.dropbear.id.au>
  * - Kissed strtok() goodbye
  */
作者:BuildNewApp
出处:http://syxchina.cnblogs.comBuildNewApp.com
本文版权归作者、博客园和百度空间共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则作者会诅咒你的。
如果您阅读了我的文章并觉得有价值请点击此处,谢谢您的肯定1。
原文地址:https://www.cnblogs.com/syxchina/p/2197645.html