I'm trying to sift through a large number of .csv files for several lines of data. I've used findstr to locate the line and them stitched them together which just merges all the files with the results found into one. My question is there something that will only pull the lines with the text I'm looking for into its own .csv? Something that simply finds lines containing my search result, then copies only theses lines into its own file.
Thank you
Findstr results output
Moderator: DosItHelp
Re: Findstr results output
This will find apple and put the line in a text file.
If it doesn't help then please give examples of the data and what you want to do.
Code: Select all
findstr "apple" >file.txt
If it doesn't help then please give examples of the data and what you want to do.