本文主要是介绍strtok语法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
strtok
语法:
#include <cstring>
char *strtok( char *str1, const char *str2 );
strtok
函数返回str1
中下一个标记
(token),而str2
中包含分隔符来决定标记。如果没有发现标记strtok
返回NULL。
为了将字符串转换成标记,第一次调用strtok
应该将str1
指向要标记的字符串。之后所有的调用应该将 str1
设置为 NULL
。
例如:
char str[] = "now # is the time for all # good men to come to the # aid of their country";
char delims[] = "#";
char *result = NULL;
result = strtok( str, delims );
while( result != NULL ) {
printf( "result is /"%s/"/n", result );
result = strtok( NULL, delims );
}
上面的代码将显示一下输出:
result is "now "
result is " is the time for all "
result is " good men to come to the "
result is " aid of their country"
这篇关于strtok语法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!