免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: mudga
打印 上一主题 下一主题

一个strtok的奇怪问题 [复制链接]

论坛徽章:
0
11 [报告]
发表于 2004-10-18 14:59 |只看该作者

一个strtok的奇怪问题

恩,这样还真有问题,受教了,多谢!

论坛徽章:
0
12 [报告]
发表于 2004-10-18 15:03 |只看该作者

一个strtok的奇怪问题

偶好象没说那么多话哦
其实可以这样
char *ret;
....
ret = strtok(s, ";";
if( ret == NULL ){
.....
}
else{
//把ret得到的字符串copy出去, 爱放哪放哪, 不用指针数组了,本来嘛你也不知道
//目标串里可以拆成几个子字符串吧
}
....
ret = strtok(NULL, ";";
if( ret == NULL ){
....
}
else{
//把ret得到的字符串copy出去
}

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
13 [报告]
发表于 2004-10-18 15:07 |只看该作者

一个strtok的奇怪问题

^_^,错了,是上面的gangcai说的内存分配问题。

不过在这个题目上,不分配也不会导致core dump的。

论坛徽章:
0
14 [报告]
发表于 2004-10-18 15:08 |只看该作者

一个strtok的奇怪问题

是这样,但是如果你要处理邮件地址的话,我觉得你的程序思路就不好,你应该使用strchr函数,我给你一个示意的例子,你可以将它发展一下



  1. if ((ptr = strchr (s, ';'))){
  2.                 strncpy (content1, s, ptr - s);
  3.                 content1[ ptr - s] = '\0';
  4.                 ++ptr;
  5.                 strcpy (content2, ptr);
  6.         }
复制代码


这样你就安全又快速的得到了两个邮件地址content1和content2了

论坛徽章:
0
15 [报告]
发表于 2004-10-18 15:16 |只看该作者

一个strtok的奇怪问题

楼上说的对,用strchr()比较好,自己封一个专门用来提这样情况下的子字符串
的函数吧,比较方便。

论坛徽章:
0
16 [报告]
发表于 2004-10-18 16:43 |只看该作者

一个strtok的奇怪问题

我的本意不是为了分割email而是为了测试strtok,我发现strtok很怪异,第一次使用后所有的s打出来都是第一次分割后的东西,也就是我这里的第一个email地址。而且strtok为什么第二此以后就可以用NULL来代替s呢?它在里面到底是怎么实现的?

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
17 [报告]
发表于 2004-10-18 16:59 |只看该作者

一个strtok的奇怪问题

man里面有很清晰的描述啊。
下面是偶翻译的man手册的一部分。^_^,翻译的不好。

  1. 描述:
  2. 一个“单词”是指一个不包括在delim字符串中出现字符的非空的字符串,以'\0'或者delim中的字符结尾。
  3. strtok函数用于将字符串s解析成一个个单词。第一次调用strtok函数时要用s作为它的第一个参数。而后的调用可以将第一个参数置成NULL。每次调用返回一个指向下一个单词的指针,或者返回一个NULL,当在没有单词的时候。
  4. 如果一个单词以一个定界符结束,那么这个定界符将被改写成一个'\0',而且一个指向下一个字符的指针被保留起来,用于下一次的strtok()函数调用。定界符的字符串delim可以在每次调用strtok()函数的时候不同。
  5. strtok_r()函数是strtok()函数的可重入版本,它需要一个指向用户开辟的空间的char*型指针,用以取代它自己的静态缓冲区。这个指针,即ptrptr参数,在对同一个字符串处理的时候,必须相同。
  6. BUGS:
  7. 尽量不要使用这些函数,如果你用,那么记住这些:
  8.         这些函数会改动原始的参数。
  9.         这些函数不能用在常量字符串上。
  10.         定界符的字符将会丢失。
  11.         strtok()函数在分析的时候使用一个静态的缓冲区,所以它不是线程安全的。如果这个困扰你,那么使用strtok_r()函数。
  12. 返回值:
  13. strtok()函数返回一个指向下一个单词的指针,或者在没有单词的时候返回NULL。
复制代码

论坛徽章:
0
18 [报告]
发表于 2004-10-18 17:05 |只看该作者

一个strtok的奇怪问题

strtok用了static变量来保存原来的地址,所以后面可以用NULL来代替S。

也因为如此,strtok属于非线程安全的函数。尽量不要去用它.

MSDN的原文
Remarks

The strtok function finds the next token in strToken. The set of characters in strDelimit specifies possible delimiters of the token to be found in strToken on the current call. wcstok is the wide-character version of strtok. The arguments and return value of wcstok are wide-character strings. These two functions behave identically otherwise.

Generic-Text Routine Mappings


TCHAR.H Routine  _UNICODE Defined
_tcstok wcstok  


On the first call to strtok, the function skips leading delimiters and returns a pointer to the first token in strToken, terminating the token with a null character. More tokens can be broken out of the remainder of strToken by a series of calls to strtok. Each call to strtok modifies strToken by inserting a null character after the token returned by that call. To read the next token from strToken, call strtok with a NULL value for the strToken argument. The NULL strToken argument causes strtok to search for the next token in the modified strToken. The strDelimit argument can take any value from one call to the next so that the set of delimiters may vary.

Warning   Each of these functions uses a static variable for parsing the string into tokens. If multiple or simultaneous calls are made to the same function, a high potential for data corruption and inaccurate results exists. Therefore, do not attempt to call the same function simultaneously for different strings and be aware of calling one of these functions from within a loop where another routine may be called that uses the same function.  However, calling this function simultaneously from multiple threads does not have undesirable effects.

论坛徽章:
0
19 [报告]
发表于 2004-10-18 17:25 |只看该作者

一个strtok的奇怪问题

解释的很清楚,多谢各位老大!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP