Skip to content

Instantly share code, notes, and snippets.

@maggiben
Created July 1, 2019 18:51
Show Gist options
  • Save maggiben/90e092278e2632ce7a163d10be5a4c65 to your computer and use it in GitHub Desktop.
Save maggiben/90e092278e2632ce7a163d10be5a4c65 to your computer and use it in GitHub Desktop.
replace underscore with spaces and uppercase each word
"animal_brand_name".replace(/_/g, ' ').replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment