Open In App

Angular PrimeNG Form InputMask Mask Component

Improve
Improve
Like Article
Like
Save
Share
Report

Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Form InputMask Mask Component in Angular PrimeNG. We will also learn about the various properties and syntaxes used in the code example.

The InputMask component allows user to input values in a certain format which includes numeric, date, currency, and phone. Combinations of the following built-in definitions are possible for mask format. a (Alpha character (default: A-Z,a-z)), 9 (Numeric character (0-9)), *(Alphanumeric character (A-Z,a-z,0-9)).

Angular PrimeNG Form Editor InputMask Mask Component properties:

  • mask: It defines the pattern of the mask.

 

Syntax:

<p-inputMask mask="..."></p-inputMask>

Creating Angular application & module installation:

Step 1: Create an Angular application using the following command.

ng new appname

Step 2: After creating your project folder i.e. appname, move to it using the following command.

cd appname

Step 3: Install PrimeNG in your given directory.

npm install primeng --save
npm install primeicons --save

Project Structure: It will look like the following.

 

To run the above file run the below command:

ng serve --save

Example 1: Below is the example that illustrates the use of Angular PrimeNG Form InputMask Mask Component using mask=”99-a*-a999″.

app.component.html




<h2 style="color: green">GeeksforGeeks</h2>
<h5>PrimeNG InputMask Mask component</h5>
<p-inputMask mask="99-a*-a999"></p-inputMask>


app.component.ts




import { Component } from '@angular/core';
  
@Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
})
export class AppComponent {}


app.module.ts




import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule }
    from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { InputMaskModule } from 'primeng/inputmask';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        InputMaskModule,
        FormsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule { }


Output:

 

Example 2: Below is the example that illustrates the use of Angular PrimeNG Form InputMask Mask Component using mask=”*9-aaaaaaaaaaaaa” .

app.component.html




<h2 style="color: green">GeeksforGeeks</h2>
<h5>PrimeNG InputMask Mask component</h5>
<p-inputMask mask="*9-aaaaaaaaaaaaa"></p-inputMask>


app.component.ts




import { Component } from '@angular/core';
  
@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
})
export class AppComponent {}


app.module.ts




import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { BrowserAnimationsModule }
    from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { InputMaskModule } from 'primeng/inputmask';
  
@NgModule({
    imports: [
        BrowserModule,
        BrowserAnimationsModule,
        InputMaskModule,
        FormsModule
    ],
    declarations: [AppComponent],
    bootstrap: [AppComponent]
})
  
export class AppModule { }


Output:

 

Reference: https://www.primefaces.org/primeng/inputmask



Last Updated : 03 Oct, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads