I am using Notepad++. I was wondering if I could change all occurences like the following from
DONT CONVERT ALL CAPS. TextToConvert
to
DONT CONVERT ALL CAPS. Text_To_Convert
using regular expressions in find and replace fields.
Thank you in advance.
I am using Notepad++. I was wondering if I could change all occurences like the following from
DONT CONVERT ALL CAPS. TextToConvert
to
DONT CONVERT ALL CAPS. Text_To_Convert
using regular expressions in find and replace fields.
Thank you in advance.
Try replacing ([a-z])([A-Z]) with \1_\2.