At my company we have two different style guides for java vs sql. In java I have a field named historyOfPresentIllness and when i write the sql, I want to name it
historyOfPresentIllness
Very simple press Clr + F to open Find/Replace panel and check [✓] Regex copy past regex
Clr + F
Find: [_]{1,1}([a-z])
[_]{1,1}([a-z])
Replace: \U$1
\U$1
Press [Replace all] button, Enjoy
Thanks @piotrek for _some_awe_var to _someAweVar
_some_awe_var
_someAweVar
Use Find: (\w)[_]{1,1}([a-z]) Replace: $1\U$2
(\w)[_]{1,1}([a-z])
$1\U$2