Angular 9/8 LowerCase Pipe Example | LowerCase Pipe in Angular
In this post we will give you information about Angular 9/8 LowerCase Pipe Example | LowerCase Pipe in Angular. Hear we will give you detail about Angular 9/8 LowerCase Pipe Example | LowerCase Pipe in AngularAnd how to use it also give you demo for it if it is necessary.
Hi Dev
In this example, you will learn angular lowercase pipe example. this example will help you convert to lowercase in angular. This post will give you simple example of angular lowercase pipe input. i explained simply step by step angular input lowercase 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 and angular 9 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 | lowercase }}
Lowercase Pipe Example
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: '<div>
<p>{{ myString | lowercase }}</p>
</div>',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myString = "This is ANGULAR Lowercase Pipe Example";
}
Output
this is angular lowercase pipe example
Lowercase Pipe with Input Example
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: '<div>
<input (input) = "setDataOnChange($event.target.value)">
<p>{{ myString | lowercase }}</p>
</div>',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
myString = "";
setDataOnChange(value){
this.myString = value;
}
}
I hope it can help you…
Hope this code and post will helped you for implement Angular 9/8 LowerCase Pipe Example | LowerCase Pipe in Angular. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs