|
Answer» Hello all!
I'm new here so please be patient!
I have a rather large LIST of text files. What I'd like to do is find a particular STRING of text inside each file and if FOUND - extract it to another file. That other file will contain all the strings of text from each file in the large list, each string will be on a new line.
Anyone willing to help?if your requirement is that SIMPLE, you can use findstr . type findstr /?
findstr /n "mystring" *.TXT
|