标签:
函数声明
bool getline(istream &in, string &s)
功能说明:
从输入流读入一行到变量string s,及时是空格也可以读入。
1 int main(int argc,char* argv[]) 2 { 3 ifstream ifs; 4 ofstream ofs; 5 string str; 6 ifs.open(argv[1]); 7 ofs.open(argv[2]); 8 while(getline(ifs,str)) 9 { 10 if(str.at(0)==‘#‘)//过滤特殊的行(此处是#开头) 11 continue; 12 ofs<<str<<endl; 13 } 14 ifs.close(); 15 ofs.close(); 16 return 0; 17 }
参考 http://blog.csdn.net/slience_perseverance/article/details/19819601
标签:
原文地址:http://www.cnblogs.com/zhaojk2010/p/5727393.html