Site icon Learn C++

Quickly Learn To Search And Count Words From A Text File In Modern C++

ethnic young woman using laptop while having tasty beverage in modern street cafe

Photo by Andrea Piacquadio on Pexels.com

C++ Builder is easy to operate on files on Windows. There are many methods to operate on files. Some of these methods are explained well in Windows File Operations in Modern C++.

In this post we create a snippet to search and count a text from a text file.

[crayon-662779ca768f5003158017/]

Now let’s use this in an example

C++ Console Application VCL Example

  1. Create a new C++ Builder Console VCL application, save all project and unit files to a folder. And modify code lines as below;
[crayon-662779ca768fc983659074/]

2. Hit F9 to run with debugging on Console

C++ Console Application FMX Example

  1. Create a new C++ Builder Console FMX application, save all project and unit files to a folder. And modify code lines as below;
[crayon-662779ca76902566842923/]

2. Hit F9 to run with debugging on Console

This method can be used to modify (replace) text files too. To do this, you need to open another file to write new modified and unmodified lines in order.

Exit mobile version