编程学习网为您整理以下代码实例,主要实现:C语言库strtok()函数,希望可以帮到各位朋友。
#include <string.h>
#include <stdio.h>
int main () {
char str[80] = "This is - www.yiibai.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);
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!