Reputation: 755
I use Editplus to find replace values. I have String in the for abc_xyz. Is there way to convert it to abcXyz (camel case) using editplus regular expression and find replace functionality?
Upvotes: 1
Views: 3459
Reputation: 920
The following works in Edit Plus 3.70.
Enter or check the following in the replace dialog.
This works fine for the example given.
If you have a variable such as has_three_words then running the replace twice will convert the variable to hasThreeWords.
Upvotes: 3