What Is Angular UpperCase Pipe?
On this page we will provide angular 2 uppercase pipe and lowercase pipe example. Angular UpperCasePipe transforms string to uppercase and LowerCasePipe transforms string to lowercase. It is used as follows.
UpperCasePipe uses
{{ value_expression | uppercase }}
expression | uppercase
The expression result will be converted into uppercase. Find the example.
uppercasepipe.component.ts
On this page we will provide angular 2 uppercase pipe and lowercase pipe example. Angular UpperCasePipe transforms string to uppercase and LowerCasePipe transforms string to lowercase. It is used as follows.
UpperCasePipe uses
uppercase
keyword to transform string into uppercase as given below. {{ value_expression | uppercase }}
UpperCasePipe
UpperCasePipe
is a PIPE
that transforms string to uppercase. It relates to CommonModule
. Find the syntax of UpperCasePipe
as below. expression | uppercase
The expression result will be converted into uppercase. Find the example.
uppercasepipe.component.ts
0 comments:
Post a Comment