我的.txt文件包含
等信息abc,bcd,10,20.
cde,efg,30.
hello,there,40
如何读取最后一个值,在本例中为20,30和40,它介于和之间。
ifstream myfile;
myfile.open("myfile.txt");
string doctor;
for(int j=1;j<=5;j++)
{
for (int i = 1; i<=1; i++)
{
getline(myfile,doctor,'.');
}
cout<<doctor<<endl;
getline(myfile,doctor);
}
myfile.close();
在这里,我得到整行