0

C ++でテキストファイルから1行のテキストをコピーする必要があります。単語が存在する行を見つけるプログラムがあるので、個々の行を取得して、行を検索できる文字列にロードできるかどうかを判断しました行、文字列ごとに検索して、ファイル内の正しい単語とその位置 (行数ではなく文字数) を見つけます。助けていただければ幸いです。

編集:行を見つけるために使用しているコードを見つけました

#include <cstdlib> 
#include <iostream>
#include <string>
#include <fstream>
#include <cstring>
#include <conio.h>

using namespace std;

int main()
{   

    ifstream in_stream;           //declaring the file input
    string filein, search, str, replace; //declaring strings
    int lines = 0, characters = 0, words = 0; //declaring integers
    char ch;

    cout << "Enter the name of the file\n";   //Tells user to input a file name
    cin >> filein;                            //User inputs incoming file name
    in_stream.open (filein.c_str(), ios::in | ios::binary); //Opens the file


    //FIND WORDS
    cout << "Enter word to search: " <<endl;
    cin >> search; //User inputs word they want to search

    while (!in_stream.eof())  
    {
        getline(in_stream, str); 
        lines++;                
        if ((str.find(search, 0)) != string::npos) 
        {
            cout << "found at line " << lines << endl;
        }
    }

    in_stream.seekg (0, ios::beg);  // the seek goes here to reset the pointer....

    in_stream.seekg (0, ios::beg);  // the seek goes here to reset the pointer.....
    //COUNT CHARACTERS

    while (!in_stream.eof())      
    {
        in_stream.get(ch);    
        cout << ch;
        characters ++;      
    }
    //COUNT WORDS

    in_stream.close ();               


    system("PAUSE");                     
    return EXIT_SUCCESS;    
}
4

1 に答える 1

0

これを行うために必要なループは 1 つだけです。ループは次のようになります。

while (getline(in_stream, str))
{
    lines++;
    size_t pos = str.find(search, 0);
    if (pos != string::npos) 
    {
        size_t position = characters + pos;
        cout << "found at line " << lines << " and character " << position << endl;
    }
    characters += str.length();
}

また、int 型と size_t 型を混在させないことをお勧めします。たとえば、文字は int ではなく size_t として宣言する必要があります。

于 2012-07-11T23:59:07.837 に答える