Skip to content

Instantly share code, notes, and snippets.

@czwen
Created July 8, 2020 12:07
Show Gist options
  • Save czwen/eb086417348125bde5d7e1eacdf0c381 to your computer and use it in GitHub Desktop.
Save czwen/eb086417348125bde5d7e1eacdf0c381 to your computer and use it in GitHub Desktop.
Convert strings like under_score to strings like camelCase
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