Skip to content

Instantly share code, notes, and snippets.

@erickolivares
Last active May 15, 2019 01:00
Show Gist options
  • Save erickolivares/69abc05d75daa8018f04dbe3e865b509 to your computer and use it in GitHub Desktop.
Save erickolivares/69abc05d75daa8018f04dbe3e865b509 to your computer and use it in GitHub Desktop.

Sentence Case

find:

([A-Z])([A-Z]+)\b

replace:

$1\L$2

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