RegExp
scottjhnOct 25 2012 — edited Oct 26 2012For a string of the formats:
abc_def_ghl
abcd_xyz
abc_def_ghl_k
or similar...
I like to replace the "_char" with the uppercased char, for example:
abc_def_ghl --> abcDefGhl
abcd_xyz --> abcdXyz
abc_def_ghl_k --> abcDefGhlK
etc.
What is the RegExp for it?
Thanks