Created
July 8, 2020 12:07
-
-
Save czwen/eb086417348125bde5d7e1eacdf0c381 to your computer and use it in GitHub Desktop.
Convert strings like under_score to strings like camelCase
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find: (\w*)_(\w*)_(\w*) | |
replace: \l\1\u\2\u\3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment