Skip to content

Instantly share code, notes, and snippets.

@alexwoollam
Created November 5, 2020 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexwoollam/ac2bd7fd5ac255b512746df6bb240e8f to your computer and use it in GitHub Desktop.
Save alexwoollam/ac2bd7fd5ac255b512746df6bb240e8f to your computer and use it in GitHub Desktop.
Regex, snake_case to camelCase
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