Capitalize first letter of a string using Angular or typescript
本问题已经有最佳答案,请猛点这里访问。
如何使用斜角或字体将字符串的第一个字母大写?
1 2 3 4 | function titleCaseWord(word: string) { if (!word) return word; return word[0].toUpperCase() + word.substr(1).toLowerCase(); } |
你也可以使用在titlecasepipe模板
一些组件模板
1 | {{value |titlecase}} |
1 2 | let str:string = 'hello'; str = str[0].toUpperCase() + str.slice(1); |
1 2 | var str = 'santosh'; str = str ? str.charAt(0).toUpperCase() + str.substr(1).toLowerCase() : ''; |