ホームページ  >  記事  >  php教程  >  C++ はファイルからコンテンツを単語ごとに読み取ります

C++ はファイルからコンテンツを単語ごとに読み取ります

大家讲道理
大家讲道理オリジナル
2016-11-11 13:38:001877ブラウズ

読み取り方法: 単語ごとに読み取り、スペースを使用して単語を区切ります。「.」に遭遇したら読み取りを停止し、返された内容はベクトルに保存されます

//read data from the file, Word By Word
//when used in this manner, we'll get space-delimited bits of text from the file
//but all of the whitespace that separated words (including newlines) was lost.
//http://www.sharejs.com
vector<string> ReadDataFromFileWBW()
{
    ifstream fin("Input.txt"); 
    string strWord("");
    vector<string> v;
    while( fin >> strWord )
    {
    //字符串string类的比较要用compare函数
        if (strWord.compare(strWord.length()-1, 1, ".") == 0)  
        {
            strWord.erase(strWord.length()-1, 1);
            v.push_back(strWord);
            return v;
        }  
        v.push_back(strWord);
    }
}
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。