Skip to content

Instantly share code, notes, and snippets.

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 renesansz/44c1e54d46ccad93b8fe1c3cb45ee44c to your computer and use it in GitHub Desktop.
Save renesansz/44c1e54d46ccad93b8fe1c3cb45ee44c to your computer and use it in GitHub Desktop.
JS Regex - Convert every first letter in a word to uppercase
var yourString = "davao city";
var result = yourString.replace(/(^|\s)[a-z]/gm, c => c.toUpperCase());
console.log(result); // Davao City
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment