6
I have a tax file that comes with the following information on the line:
Ex:. OCF|DINHEIRO|160.12|12
To fix it I have to erase a part, and the right one would be:
OCF|DINHEIRO|160.12
Then I started making a regular expression in Notepad++; In which I can locate exactly what I want to look for. The expression is this:
(^OCF\|)(\w*\|)(\d*.\d*)
Now I need to know how to replace everyone to generate the value I expect:
OCF|DINHEIRO|160.12
Will do this by text editor or in some programming language?
– Woss
AP uses Notepad++, so just use this Regular Expression with Ctrl+F, then go to the Replace tab, insert the expression in the Find box, change the search mode to Regular Expression and replace all.
– danieltakeshi