I have a file with a some comma separated names and some comma separated account numbers.
Names will always be something like Dow, John
and numbers like 012394,19862
.
Using Notepad++'s "Regex Find" feature, I'd like to replace commas between numbers with pipes |
.
Basically :
turn: Dow,John into: Dow,John
12345,09876 12345|09876
13568,08642 13568|08642
I've been using [0-9],
to find the commas, but I can't get it to properly leave the number's last digit and replace just the comma.
Any ideas?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…