Angular 10 DemicalPipe API Last Updated : 04 Aug, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we are going to see what is DemicalPipe in Angular 10 and how to use it. The DemicalPipe is used to format a value according to digit options and locale rules. Syntax: {{ value | number}} NgModule: Module used by DecimalPipe is: CommonModule Approach: Create an Angular app to be used.There is no need for any import for the DecimalPipe to be used.In app.component.ts define the variable that takes decimal value.In app.component.html use the above syntax to make the date element.Serve the angular app using ng serve to see the output. Parameters: Value: It takes a string value that is converted to a decimal according to the conditions using the decimal pipe. Example 1: app.component.ts import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { pi: number = 2.33; } app.component.html <p> Number: {{pi | number}} </p> <p> <!-- In this '4.1-5' means 4 digits before . and 1-5 digits after . depending upon given digit --> Number with 4 digits: {{pi | number:'4.1-5'}} </p> Output: Example 2: app.component.ts import { Component, LOCALE_ID } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { num: number = 20*4; } app.component.html <p> Number: {{num | number}} </p> <p> <!-- In this '4.2' means 3 digits before . and 2 digits after . which is 80--> Number with 3 digits: {{num | number:'3.2'}} </p> Output: Reference: https://angular.io/api/common/DecimalPipe Comment More infoAdvertise with us Next Article Angular 10 I18nSelectPipe API T taran910 Follow Improve Article Tags : Web Technologies AngularJS Angular10 AngularJS-API Similar Reads Angular 10 DatePipe API In this article, we are going to see what is DatePipe in Angular 10 and how to use it. DatePipe is used to format a date value according to locale rules. Syntax: {{ value | date }} Approach: Create the angular app that to be used.There is no need for any import for the DatePipe to be used.In app.co 1 min read Angular 10 I18nPluralPipe API In this article, we are going to see what is I18nPluralPipe in Angular 10 and how to use it. The I18nPluralPipe is a map that takes a string value that pluralizes according to given rules. Syntax: {{ value | i18nPlural : map [ : rule]}} NgModule: Module used by I18nPluralPipe is: CommonModule Approa 2 min read Angular 10 I18nSelectPipe API In this article, we are going to see what is I18nSelectPipe in Angular 10 and how to use it. I18nSelectPipe is a selector that is used to displays the string that matches the current value. Syntax: {{ value | i18nSelect : map}} NgModule: Module used by I18nSelectPipe is: CommonModule  Approach: Cr 2 min read Angular 10 UpperCasePipe In this article, we are going to see what is UpperCasePipe in Angular 10 and how to use it. The UpperCasePipe is used to Transforms all the text to uppercase. Syntax: {{ value | uppercase }} NgModule: Module used by UpperCasePipe is: CommonModule Approach: Create the angular app to be usedThere is 1 min read Pipes in Angular Pipes are often used for formatting dates, numbers, and Strings and they can be customized to suit various needs. In this article, we explain about how to use pipes in Angular with examples and related outputs for your reference.Prerequisites:To understand this article you should have knowledge of t 8 min read Angular10 percentPipe In this article, we are going to see what is percentPipe in Angular 10 and how to use it. The percentPipe is used to Transform a number to a percentage string. Syntax: {{ value | percent [ : digitsInfo [ : locale ] ] }} NgModule: Module used by percentPipe is: CommonModule Approach: Create the angul 2 min read Like