所以在我的txt文件中我有这样的数字
1,200,400
2,123,321
3,450,450
4,500,250
每次我将有3个数字,我需要阅读它们并将它们保存在一些变量中,任何人都可以帮我解决如何做到这一点,因为大多数情况下我都会学习如何阅读字符的教程,但如果我尝试把它们写在变量中我得到一些奇怪的数字......
答案 0 :(得分:0)
std::fstream myfile("filename.txt", std::ios_base::in);
int a ,b,c;
char ch; //For skipping commas
while (myfile>> a >> ch >> b>> ch >>c)
{
// Play with a,b,c
}
myfile.close();
答案 1 :(得分:0)
如果您想阅读这些数字,则需要.ignore()
逗号(或将其提取为char
)。如果您想保存元组,可以使用std::vector
std::tuple<int, int, int>
的{{3}}:
std::vector<std::tuple<int,int,int>> myNumbers;
int number1, number2, number3;
while(((file >> number1).ignore() >> number2).ignore() >> number3){
myNumbers.push_back(make_tuple(number1, number2, number3));
}
答案 2 :(得分:0)
最简单的方法(我猜)是将逗号读入虚拟char变量。
int num1, num2, num3;
char comma1, comma2;
while (file >> num1 >> comma1 >> num2 >> comma2 >> num3)
{
...
}
将逗号读入变量comma1
和comma2
后,您可以忽略它们,因为您真正感兴趣的是数字。
答案 3 :(得分:0)
您的文件格式与CSV文件相同,因此您可以使用此文件。
来自http://www.cplusplus.com/forum/general/13087/
ifstream file ( "file.csv" );
string value;
while ( file.good() )
{
getline ( file, value, ',' ); // read a string until next comma: http://www.cplusplus.com/reference/string/getline/
cout << string( value, 1, value.length()-2 ); // display value removing the first and the last character from it
}