使用Angular或typescript来首字母大写字母
这个问题在这里已经有了答案:
function titleCaseWord(word: string) {
if (!word) return word;
return word[0].toUpperCase() + word.substr(1).toLowerCase();
}
您也可以在模板TitleCasePipe中使用
一些组件模板:
{{value |titlecase}}
var str = 'santosh';
str = str ? str.charAt(0).toUpperCase() + str.substr(1).toLowerCase() : '';
let str:string = 'hello';
str = str[0].toUpperCase() + str.slice(1);
链接地址: http://www.djcxy.com/p/17871.html
上一篇: Capitalize first letter of a string using Angular or typescript