Skip to content

Instantly share code, notes, and snippets.

@LeoFeitosa
Forked from ryanhs/ucwords.js
Created July 11, 2018 14:58
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 LeoFeitosa/c6679232f5ff8b0e108dd6949eab341a to your computer and use it in GitHub Desktop.
Save LeoFeitosa/c6679232f5ff8b0e108dd6949eab341a to your computer and use it in GitHub Desktop.
ucwords in JavaScript - Equivalent to PHP's ucwords() Returns a string with the first letter in upper case of each word.
String.prototype.ucwords = function() {
str = this.toLowerCase();
return str.replace(/(^([a-zA-Z\p{M}]))|([ -][a-zA-Z\p{M}])/g,
function(s){
return s.toUpperCase();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment