I have a text file that denotes remarks with a single \'.
\'
Some lines have two quotes but I need to get everything from the first instance of a \
\
When I tried '.* in windows (Notepad ++) it would match everything after first ' until end of last line.
To capture everything until end of that line I typed the following:
'.*?\n
This would only capture everything from ' until end of that line.