I have a tax file that comes with the following information in the line:
Ex:. OCF|DINHEIRO|160.12|12
To fix it I have to delete a part, and the right one would be:
OCF|DINHEIRO|160.12
So I started doing a regular expression in notepad ++; In which I can find exactly what I want to search. The expression is this:
(^OCF\|)(\w*\|)(\d*.\d*)
Now I need to know how to replace all so that the value I expect is generated:
OCF|DINHEIRO|160.12