n
newbie.works.with.QTMarch 4, 2019, 1:07 p.m.

как найти конкретную строку в файле (блокнот)

c++

У меня следуйщая задача:

ввожу слово или код в консоль, программка считывает, находит в блокноте нужную строку записывает две переменные:
(1-я ту строку которую мы нашли благодоря слову или коду и
2-я следуйщая сторка после неё)
вот так вот.

у меня есть только проверка есть ли слово или код:

#include <iostream>
#include <windows.h>
#include <string.h>
#include <fstream>

using namespace std;

int main()
{
    char word[256], line[256], tmp[256];
    char *buf = NULL;
    ifstream file;
    setlocale(0, "");
    cout << "слово для поиска: ";
    cin.get(word, 256, '\n');

    file.open("D:\\TRAN\\Lib6.txt", ios::in);
    if(!file)
          {
          cout<<"нет такого файла!!!!"<<endl;
                       exit(1);
 }
    while (!file.eof())
    {
        file.getline(line, 256, '\n');
        strcpy(tmp, line);
        buf = strtok(tmp, " ");

        if (buf == NULL)
        {
            cout << "Ошибка" << endl;
                       file.close();
                       system("pause");
            exit(1);
          }
        if (strcmp(buf, word) == 0)
        {
            cout << line <<" : найдено совпадение" << endl;

            system("pause");
            exit(0);

        }

    }
    cout << "нет подобных значений" << endl;
    file.close();
    system("pause");
    return 0;
}

и просто вывод текста:

 const int len = 300, strings = 6;
    const char ch = '\n';
    char mass[len][strings];

    ifstream fs("D:\\TRAN\\Lib6.txt", ios::in | ios::binary); 

    if(!fs) return 1; 

    for(int r = 0; r<strings; r++)
    {
        fs.getline(mass[r], len-1,ch); 
        cout << "String " << r+1 << " = "<< mass[r] << endl; 
    }
    fs.close();

а вот найти строку по слову, записать в переменную
эту строку и в другую переменную следуйщую строку не знаю как...
кажется двигаюсь не в том направлении :(
помогите пожалуйста.

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

12
Evgenii Legotckoi
  • March 5, 2019, 3:38 a.m.

Добрый день!

Вы не пробовали использовать std::string для строк?

Это было бы несколько проще для поиска строк, вот примеры для поиска строк в строке std::string

    n
    • March 7, 2019, 1:37 p.m.

    Добрый вечер,
    спасибо за ссылку. А для работы нужно весь текст из txt записывать? не получается организовать чтение из файла (не знаю как это сделать)

      Evgenii Legotckoi
      • March 8, 2019, 3:37 a.m.

      конечно, нужно считывать

      Вот например один из вариантов чтения из файла в одну строку

      #include <fstream>
      #include <string>
      
      int main(int argc, char** argv)
      {
        std::ifstream ifs("myfile.txt");
        std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
        return 0;
      }
      
        n
        • March 9, 2019, 7:31 a.m.

        Большое спасибо!!!!
        Только один вопрос: как записать в переменную всю строку сначала (у меня просто получается только кусок) и как записать следуйщую строку?

          n
          • March 9, 2019, 7:36 a.m.

          Вот у меня так получилось:

          #include <fstream>
          #include <string>
          #include <iostream> 
          
          int main(int argc, char** argv)
          {
            setlocale(LC_ALL, "Russian");
          
            std::ifstream ifs("D:\\TRAN\\Lib6.txt");
          
            std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
            std::string str2 ("Seven");
          
            std::size_t found = content.find(str2);
            if (found!=std::string::npos)
              std::cout << "ïåðâàÿ «èãëà» íàéäåíà â: " << found << "                found 1" << '\n';
          
          
          
          
          
              found=content.find('.');
            if (found!=std::string::npos)
              std::cout << "Ïåðèîä íàéäåí ïî àäðåñó: " << found<< "                found 4" << '\n';
          
          
              content.replace(content.find(str2),str2.length(),"ðàçäåë");
            std::cout << content << '\n';
          
            return 0;
          }
          
            n
            • March 9, 2019, 8:35 a.m.

            Мысли насчёт второй строчки таковы:

             std::string str2 ("\n");
            

            узнать где переход на следуйщую строку и узнать точку

            found=content.find('.');
            

            и записать всё что между ними в переменную (только это в мыслях, а как скомпилировать так ошибки одни)

              Evgenii Legotckoi
              • March 10, 2019, 5:52 a.m.

              Что это за кракозябры в коде. Как вообще понять, что вы этим хотите сказать?

              У себя код скомпилировал, ну в некоторых случаях там есть выход за пределы массива, если не находит тот же самый Seven.

              Не совсем понимаю конкретики вашей проблемы. И ещё перепишите код с использованием фигурных скобок у условий. А то мне кажется, что вы просто не совсем понимаете синтаксис языка. Если фигурный скобок у if нет, то в C++ учитывается в качестве тела условия только одна следующая за if строка, и никакие отступы в данном языке программирования роли не играют.

                n
                • March 10, 2019, 8:21 a.m.

                пример прост: я пишу из консоли переменную string
                -Chto chitaesh?

                txt:

                Privet, kak dela?
                horosho.
                Chto chitaesh?
                knigy.
                interesnaia?
                net, no mogy dat pochitat.
                
                

                программа должна выдать:
                -knigy.

                непонимаю как сказать программе
                - все символы после конца строки и до точки запиши в пременную dva

                #include <fstream>
                #include <string>
                #include <iostream> 
                
                int main(int argc, char** argv)
                { 
                   //dva;
                  setlocale(LC_ALL, "Russian");
                
                  std::ifstream ifs("D:\\TRAN\\Lib6.txt");
                
                  std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
                  std::string str2 ("Chto chitaesh?");
                
                  std::cout << str2.size() << std::endl;
                
                  std::size_t found = content.find(str2);
                  if (found!=std::string::npos){
                        std::cout << "конец слова " << found+str2.size() <<  '\n';
                  }
                
                
                
                  std::string str2 ("'\n'");
                  // нужно чтобы поиск был после ((found+str2.size()
                  std::cout << str2.size() << std::endl;
                
                  std::size_t found = content.find(str2);
                  if (found!=std::string::npos){
                        std::cout << "Наша строка " << found+str2.size() <<  '\n';
                  }
                
                
                    found=content.find('.');
                  if (found!=std::string::npos){
                     std::cout << "Нужно указать чтобы точка искалась после  (found+str2.size()   " << found<<  '\n';
                  }
                   //и все символы после ((found+str2.size()  и до точки записать в переменную dva
                
                
                  std::cout << content << '\n';
                
                  return 0;
                }
                
                  Evgenii Legotckoi
                  • March 11, 2019, 4:30 a.m.

                  Ну вот так можно написать программу.

                  Сохранит в вектор все строки, которые оканчиваются на точку. В вашем случае это как раз ответы получаются.

                  #include <iostream>
                  #include <string>
                  #include <fstream>
                  #include <vector>
                  
                  bool endsWith(const std::string& s, const std::string& suffix)
                  {
                      return s.rfind(suffix) == (s.size()-suffix.size());
                  }
                  
                  int main()
                  {
                      std::ifstream file("D://text.txt");
                  
                      std::vector<std::string> answers;
                  
                      std::string str;
                      while (std::getline(file, str))
                      {
                          if (endsWith(str, "."))
                          {
                              answers.push_back(str);
                          }
                      }
                  
                      for (const std::string& answer : answers)
                      {
                          std::cout << answer << std::endl;
                      }
                  
                      return 0;
                  }
                  
                  
                    n
                    • March 11, 2019, 11:42 a.m.

                    Добрый вечер. Извините, неправильно написал.....
                    Ну так выводит все строки с точкой, а мне нужно только следуйщую после нашей.

                      Evgenii Legotckoi
                      • March 11, 2019, 3:47 p.m.
                      • (edited)
                      • The answer was marked as a solution.

                      Ну самый такой вариант в лоб, при полном совпадении строки вопроса и учитывая, что следующая строка, которая оканчивается на точку является ответом, можно написать так.

                      #include <iostream>
                      #include <string>
                      #include <fstream>
                      #include <vector>
                      
                      bool endsWith(const std::string& s, const std::string& suffix)
                      {
                          return s.rfind(suffix) == (s.size()-suffix.size());
                      }
                      
                      int main()
                      {
                          std::ifstream file("/home/dekadent/text.txt");
                          std::string questionStr = "Chto chitaesh?";
                          std::string str;
                      
                          bool found = false;
                          while (std::getline(file, str))
                          {
                              if (str == questionStr)
                              {
                                  while (std::getline(file, str))
                                  {
                                      if (endsWith(str, "."))
                                      {
                                          found = true;
                                          break;
                                      }
                                  }
                              }
                      
                              if (found)
                              {
                                  break;
                              }
                          }
                      
                          std::cout << str << std::endl;
                      
                          return 0;
                      }
                      
                      
                        n
                        • March 12, 2019, 12:57 p.m.

                        Большооооое спасибо!!!!!
                        Не передать как я вам благодарен, спасибо что всегда отзываетесь.
                        Теперь я смогу продолжить работу в QT!!! (пробую писать бота (Я как вы могли догадаться немного не програмист, моя специализация - анимация),
                        ( с Ui разобрался (строка ввода с кнопочкой), а вот с блокнотом была проблема, но благодоря вам это уже в прошлом (в эти строчки будут закидываться не просто слова, а путь к Waw файлу))
                        Спасибо!!!!

                          Comments

                          Only authorized users can post comments.
                          Please, Log in or Sign up
                          AD

                          C ++ - Test 004. Pointers, Arrays and Loops

                          • Result:50points,
                          • Rating points-4
                          m

                          C ++ - Test 004. Pointers, Arrays and Loops

                          • Result:80points,
                          • Rating points4
                          m

                          C ++ - Test 004. Pointers, Arrays and Loops

                          • Result:20points,
                          • Rating points-10
                          Last comments
                          i
                          innorwallNov. 15, 2024, 5:30 p.m.
                          Qt/C++ - Lesson 065. The correspondence of HTTP errors to server response errors in QNetworkAccessManager s Midsummer Classic in Kansas City priligy online pharmacy
                          i
                          innorwallNov. 15, 2024, 4:44 p.m.
                          Qt/C++ - Lesson 039. How to paint stroke in QSqlTableModel by value in the column? Many OPKs would advise users to start using the test strips around day 9 of your cycle, considering day 1 to be the first day of full menstrual flow buy priligy australia
                          i
                          innorwallNov. 15, 2024, 1:27 p.m.
                          Release of C++/Qt and QML application deployment utility CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
                          i
                          innorwallNov. 15, 2024, 8:26 a.m.
                          Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
                          i
                          innorwallNov. 15, 2024, 6:03 a.m.
                          Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
                          Now discuss on the forum
                          t
                          tonypeachey1Nov. 15, 2024, 5:04 p.m.
                          google domain [url=https://google.com/]domain[/url] domain [http://www.example.com link title]
                          i
                          innorwallNov. 15, 2024, 4:50 p.m.
                          добавить qlineseries в функции priligy for sale Gently flush using an ear syringe
                          i
                          innorwallNov. 11, 2024, 9:55 p.m.
                          Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
                          9
                          9AnonimOct. 25, 2024, 7:10 p.m.
                          Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

                          Follow us in social networks