I have text that looks like this:
//
//
//
A pair of forward slashes, followed by a carriage return, repeated 2-3 times.
I want to the complete sequence from the file. The regular expression tester or replacer doesn't seem to work.
In the regex field, I try to find //\n or \/\/\n, but neither seems to work.
How to find/replace forward slashes and return?
-
DV