boost的split
摘要:
1 ifstream infile; 2 infile.open("funclist.txt",ios::in); 3 string curline; 4 5 while (!infile.eof()) 6 { 7 vector<string> splitstring; 8 getline(infile,curline); 9 //boost::algorithm::s10 split(splitstring,curline,is_any_of(" "));11 funcinfo* pfi=new funcinfo;12 ... 阅读全文
posted @ 2012-09-22 01:20 xermao 阅读(1196) 评论(1) 推荐(0) 编辑