Skip to content

Instantly share code, notes, and snippets.

@maggiben
Created November 11, 2019 12:45
Show Gist options
  • Save maggiben/60474061aabab8d9c7471cc44c4d71ce to your computer and use it in GitHub Desktop.
Save maggiben/60474061aabab8d9c7471cc44c4d71ce to your computer and use it in GitHub Desktop.
Capitalize undescore words
'hello_my_name_is_ben'.replace(/_/g, ' ').replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
// Hello My Name Is Ben
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment