Have this text sequence, how do we get it to look like desired output.
AAAAAAA ................................................ 28.02%
AAAAA-BBBBB, AB ........................................ 16.50%
AAAAAAA ................................................ 28.02%
AAAAA-BCCCC, AB ........................................ 16.50%
CCCCCCC ................................................ 28.02%
AAAAA-DDDDD, AB ........................................ 16.50%
FFFFFFF ................................................ 28.02%
AAAAA-BBBBB, AB ........................................ 16.50%
Trying to get into a format like this --
AAAAAAA | 28.02%
AAAAA-BBBBB, AB | 16.50%
AAAAAAA | 28.02%
AAAAA-BBBBB, AB |16.50%
AAAAAAA | 28.02%
AAAAA-BBBBB, AB | 16.50%
Using Pipe delimiter, that way I can load it into DB (since I can't use commas,they're in the first part of the string).
so far I've tried this - without much success, any help would be appreciated. Using Notepad++ for processing the regex.
\.(?!$)
replace with blank