Created
November 5, 2020 10:46
-
-
Save alexwoollam/ac2bd7fd5ac255b512746df6bb240e8f to your computer and use it in GitHub Desktop.
Regex, snake_case to camelCase
This file contains 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
search: (\$)(\w+)_(\w)([\w-]*) | |
replace: $1$2\U$3$4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment