You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/String/Uncapitalize the first lett...

9 lines
294 B
JavaScript

function unCapitalize_Words(str)
{
return str.replace(/\w\S*/g,
function(txt)
{
return txt.charAt(0).toLowerCase() + txt.substr(1).toLowerCase();});
}
console.log(unCapitalize_Words('Js String Exercises'));