Login
Remember
Register
Ask a Question
angular title case
0
votes
asked
Sep 18, 2019
in
Angular
by
john ganales
angular title case
#angular-customs-filters
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 19, 2019
by
Robin
Angular 4 introduced a new 'titlecase' pipe '|' and use to changes the first letter of each word into the uppercase.
The example as,
<h2>{{ 'ramesh rajendran` | titlecase }}</h2>
<!-- OUTPUT - It will display 'Ramesh Rajendran' -->
...