I have this regex (dug up form somewhere)
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
that Capitalizes the First Characters of a Prsons name.
It does not handle a Hyphanated Name like
melinda-ann smith
and returns
Melinda-ann Smith
when it should be
Melinda-Ann Smith
Regex is a very weak point with me, ... What do I need to change to Capitalize the character after the hyphen.
Inorder to make it capitalize, first non-uppercase letter like this:
it make
melinda-ann smith
toMelinda-Ann Smith