Skip to content

Instantly share code, notes, and snippets.

@bbrown
Created August 4, 2017 23:17
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 bbrown/af77096dbbcccb382eae17978bef472b to your computer and use it in GitHub Desktop.
Save bbrown/af77096dbbcccb382eae17978bef472b to your computer and use it in GitHub Desktop.
Regular expression to title case a word (doesn't handle words separated spaces)

Find: ([A-Z])([a-zA-Z]*)

Replace: $1\L$2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment