Convert camelCaseText to Title Case Text

const text="helloThereMister";
const result = text.replace(/([A-Z])/g, " $1");
const finalResult = result.charAt(0).toUpperCase() + result.slice(1);
console.log(finalResult);

capitalize the first letter – as an example. Note the space in " $1".


Of course, in case the first letter is already capital – you would have a spare space to remove.

Leave a Comment