从C ++中的文本文件中提取和使用特定数据

时间:2016-05-01 16:33:42

标签: c++ fstream

好的,我设法从文件中提取了我想要的数据,但在尝试计算这些提取的数字时会出现问题(执行添加)。

数字存储在此处        cout<< stod(line.substr(position + 1))<< ENDL;

我试过这个

   sum = stod( line.substr( position + 1 ) );
   sum = sum * 5.0;
   cout << sum << endl;

由于这是一个while循环,我的程序再次执行再次计算,所以我得到每个价格乘以5,但我只想做加法,如:sum + sum + sum + sum + sum。 我甚至写过这个,我当然得到同样的东西。

   #include <iostream>
   #include <string>
   #include <fstream>
   #include <cstdlib>
   using namespace std;

   void KeyWord(ifstream &FileSearch)
   {
string line;
string letters[5];
long sum[6];
ifstream readSearch;

cout<< "Enter a barcode of a product: \n";
cin >> letters[0];
cin >> letters[1];
cin >> letters[2];
cin >> letters[3];
cin >> letters[4];
readSearch.open("Products.txt");
if(readSearch.is_open())
{
    while (getline(readSearch, line))
    {
        while (line.find(letters[0])!=string::npos || line.find(letters[1])!=string::npos || line.find(letters[2])!=string::npos || line.find(letters[3])!=string::npos || line.find(letters[4])!=string::npos)
        {
            cout << line << "\n";
            auto position = line.find( "$" );
            if( position <= line.size() )
            {
                cout << stod( line.substr( position + 1 ) ) << endl;
                break;
            }
        }
    }
}
   }

   int main()
   {
ifstream file("Products.txt");
KeyWord(file);
return 0;
   }

2 个答案:

答案 0 :(得分:1)

你可以这样试试。

while (getline(readSearch, line))
{
    int pos = line.find_last_of('$');
    double num = stod(line.substr(pos + 1, line.size() - pos - 1));
    //cout << num << endl;
}

谢谢!!!

答案 1 :(得分:0)

这里有一些蛮力供你玩。

#include <iostream>
#include <string>
#include <fstream>

using namespace std;


double getPrice( string inputLine )
{
    auto position = inputLine.find( "$" );

    if( position <= inputLine.size() )
    {
        return stod( inputLine.substr( position + 1 ) );
    }

    return 0;
}

string getBarCode( string inputLine )
{
    auto position = inputLine.find( '$' );

    position -= 1;

    string barCode;

    while( isspace( inputLine[ position ] ) )
    {
        --position;
    }

    while( ! isspace( inputLine[ position ] ) )
    {
        barCode.insert( barCode.begin(), inputLine[ position-- ] );
    }

    return barCode;
}

int main( int argc, char** argv )
{
    cout << "Enter barcode: " << endl;

    string barcodeInput;
    getline( cin, barcodeInput );

    ifstream inputFile( "Products.txt" );

    if( inputFile.is_open() )
    {
        string inputLine;

        while( getline( inputFile, inputLine) )
        {
            auto price = getPrice( inputLine );

            if( price != 0 )
            {
                if( getBarCode( inputLine ) == barcodeInput )
                {
                    cout << "Price: " << price << endl;

                    inputFile.close();

                    return 0;
                }
            }
        }

        cout << "No matching barcode." << endl;

        inputFile.close();
    }

    return 0;
}