文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C++读文件行+分割字符串

C++读文件行+分割字符串

时间:2010-07-28  来源:axejonny

还是用到了万恶的strtok

#include <stdio.h>
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <string.h>
#include <stdlib.h>

using namespace std;

int main()
{
    ifstream f("x.cfg");

    string str;
    while(getline(f,str))
    {
        if(str[0]=='[')
            cout<<str<<endl;
        else
        {
            const char* needle="=";
            char* ccc=const_cast<char*>(str.c_str());   
           
            char* c=strtok(ccc, needle);

            if(c)
                cout<<"F:"<<c<<"  ";
            c = strtok(NULL, needle);
            if(c)
                cout<<"R:"<<c<<endl;
        }
       

    }

    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载