I can write a regular expression in NP++ to find under_score_case.
I can use TextFX in NP++ to change case to upper and lower case by highlighting and selecting.
How can I use either NP++'s Find/Replace or TextFX's find and replace to stitch these together and convert under_score_case to camelCase?
I want to learn how to do this in NP++ not use a script.
Sample input:
this is_a_line
some more_data_over_here
whoop de_do_da
Desired output:
this isALine
some moreDataOverHere
whoop deDoDa
The regex to match the underscores would be _([a-z]). The replacement that I think exists, but I cannot find is something like _\toupper\1 .