I assume you are talking about txt files, so I suppose the quickest way for you would be the bash "grep" command for this. If you use Windows, you can download git, which installs a bash emulator.
grep -i "[some text]" file.txt
or
grep -i "[something]" .
for scan all files in the directory...