I have a text file I've been viewing in visual studio code:
here is one line
problem path: path1
another line
value line more info
value
problem path: path2
incredible data line
problem path: path3
And I want to copy every line which includes with the text problem path:
so my output result will look like
problem path: path1
problem path: path2
problem path: path3
Can i ctrl+f search for 'problem path' in my text file, select every line where it occurs, and copy/paste those lines into a new file?