If I do this RE Replace, it trims off the last two characters in every line, as I had intended.
However, if I do this RE Replace, it trims off the first two characters in every line, and then repeats for that line until the condition is no longer true--either one or zero characters remain on the line.Find what: ..$
Replace with:
This is not what I intended. I wanted to trim the first two characters from every line, and this RE Replace works, but it seems too pedantic and process intensive. Is there an easier Perlish way for this TP POSIX educated RE nut to accomplish this goal?Find what: ^..
Replace with:
Find what: ^..(.*)$
Replace with: $1