码迷,mamicode.com
首页 > 编程语言 > 详细

C++分割字符串

时间:2018-02-01 14:45:39      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:char   post   blog   bsp   pos   while   print   har   字符   

strtok函数

在C/C++中, strtok函数被用来拆分字符串

strtok函数原型

char *strtok( char *str, const char *delims );  
char str[] = "a#abc#edfs#naway";  
char delims[] = "#";  
char *result = NULL;  
  
result = strtok( str, delims );  
  
while( result != NULL )  
{  
    printf( "result is \"%s\"\n", result );  
    result = strtok( NULL, delims );  
}  

 

C++分割字符串

标签:char   post   blog   bsp   pos   while   print   har   字符   

原文地址:https://www.cnblogs.com/zslhg903/p/8398506.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!