C/C++_字符串分割strtok函数

#include <string>
#include <iostream>
using namespace std;
int main()
{
char str[] ="efsa efsb sefsc";
     char *pch;
     pch = strtok (str," ");           
    while (pch != NULL) {
           cout<<pch<<endl;
           pch = strtok (NULL, " ");
     }
    return 0;
}

输出:
efsa

efsb

sefsc

posted @ 2013-04-06 20:47  开心成长  阅读(6623)  评论(0编辑  收藏  举报