Answers for "capitalize first letter of every word javascript without split"

1

js split string on capital letter second

'ThisIsTheStringToSplit'.split(/(?=[A-Z])/); // positive lookahead to keep the capital letters
Posted by: Guest on January-27-2021
0

capitalize first letter of each word javascript

const titleCase = function(text) {
  let newText = '';
  text = text.toLowerCase();
  text = text.charAt(0).toUpperCase() + text.slice(1);
  for (let i = 0; i < text.length; i++) {
    if (text[i] === ' ') {
      newText += ' ' + text[i+1].toUpperCase();
      i++;
    } else {
      newText += text[i];
    }
  }
  return newText;
}
Posted by: Guest on January-12-2021

Code answers related to "capitalize first letter of every word javascript without split"

Code answers related to "Javascript"

Browse Popular Code Answers by Language