How to locate text separators and replace them?
-
This seemed like it should be top of list, but here goes
I need to replace comma “,” with a pipe “|”, but only if a comma immediately follow a 2 digit decimal.
So
,49.30,49.30,.00,.00,.00,
needs to be
|49.30|49.30|.00|.00|.00|notepad++ (Regular expression radio button clicked)
in the “Find what:” box -> (?:[.\d\d]{0},)
in the “Replace with:” box -> |add “\d” for more decimals.