Angular 10/9/8 Uppercase Pipe Example | Uppercase Pipe in Angular
Hi Dev
In this example, you will learn angular uppercase pipe example. this example will help you convert to uppercase in angular. This post will give you simple example of angular uppercase pipe input. i explained simply step by step angular input uppercase pipe example.
In this tutorial i will provide you full example and how to use angular usercase pipe with string and input field. you can use it in angular 6, angular 7, angular 8, angular 9, angular 10 and angular 11 application.
I am not going to explain more and more description but i will simply give you syntax and some small examples so you can easily use it in your application.
Syntax:
{{ value_expression | uppercase }}
Uppercase Pipe Example
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<div>
<p>{{ myString | uppercase }}</p>
</div>`,
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myString = "This is Angular Uppercase Pipe Example";
}
Output
THIS IS ANGULAR UPPERCASE PIPE EXAMPLE
Uppercase Pipe with Input Example
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `<div>
<input (input) = "setDataOnChange($event.target.value)">
<p>{{ myString | uppercase }}</p>
</div>`,
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myString = "";
setDataOnChange(value){
this.myString = value;
}
}
I hope it can help you...

My name is Hardik Savani. I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Javascript, JQuery, Laravel, Codeigniter, VueJS, AngularJS and Bootstrap from the early stage.
- Angular 10/9/8 Json Pipe Example | Json Pipe in Angular
- Angular 10/9/8 Percent Pipe Example | Percent Pipe in Angular
- Angular 10/9/8 Decimal Pipe Example | Number Pipe in Angular
- Angular 10/9/8 Date Pipe Example | Date Pipe in Angular
- Angular 10/9/8 Currency Pipe Example | Currency Pipe in Angular
- How to Use Angular Pipe in Component Class?
- How to Pass Multiple Parameters to Pipe in Angular?
- Angular nl2br Pipe Example
- How to Create Custom Pipe in Angular 9/8?