capitalizeEveryWord [大写每个单词]
大写字符串中每个单词的首字母。
使用 String.prototype.replace()
匹配每个单词的第一个字符和 String.prototype.toUpperCase()
以大写。
typescript
const capitalizeEveryWord = (str: string = "") =>
str.replace(/\b[a-z]/g, (char) => char.toUpperCase());
typescript
capitalizeEveryWord("hello world!"); // 'Hello World!'