Created
November 11, 2019 12:45
-
-
Save maggiben/60474061aabab8d9c7471cc44c4d71ce to your computer and use it in GitHub Desktop.
Capitalize undescore words
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '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