I have a very long list of data and trying to convert into a csv and the only delimiter is a lowercase always precedes a uppercase. So I am trying to add a comma in between [a-z][A-Z]
. Is this possible using Notepad++? Should I just use awk/sed from shell? Because right now it finds it, but erases the two characters and adds the comma.
You can solve your problem by using this regex ([a-z])([A-Z])
, as a replace with you need $1,$2
: