Question Any program can read and search multiple text files?

richfororbit

Active member
Joined
Jul 8, 2013
Messages
686
Reaction score
52
Points
43
Location
Greater London
Hi,

I wanted to know, are there any programs besides using Excel that can read/search through multiple text files?

Thank you.
 
regular_expressions.png


:P
 
Notepad++ for the Windows world

Or grep in both worlds, though the Windows version might be a bit disappointing. ;)
 
Last edited:
Windows' built-in search function will find text strings in any folder of files or a single file.
 
Windows' built-in search function will find text strings in any folder of files or a single file.


But it lacks regular expressions. Or negations.
 
I think, any program that looks like this can do it ;)
FAR_manager.png
 
For Windows, there is also my favorite file viewer, "V" -- it can do regex searches, too, in addition to searching multiple files (including, optionally, subdirectories): https://www.fileviewer.com/
 
egrep -r "expression" /
 
I like using The V File Viewer; it can search entire trees of files as well, and can even use regex if you like. Been using it for all kinds of file viewing (even hex) for many years now.
 
Back
Top