How to Allow Only Numbers in Textbox in Angular?
This article will provide example of allow only numbers in textbox angular. We will use angular validation for number only. This article goes in detailed on textbox should accept only numbers in angular. you will learn allow user to enter only numbers in textbox using angular.
You can use number validation pattern in angular 6, angular 7, angular 8, angular 9, angular 10, angular 11, angular 12, angular 13, angular 14, angular 15, angular 16 and angular 17 application.
I will give you full example of how to implement validation for enter number only in angular application. textbox should accept only numbers in angular using reactive form. you can also see bellow preview for validation.
Solution:
this.form = fb.group({
number: ['', [Validators.required, Validators.pattern("^[0-9]*$")]]
})
Example:
src/app/app.component.html
<div class="container">
<h1>Angular Validation for Number Only - ItSolutionStuff.com</h1>
<form [formGroup]="form" (ngSubmit)="submit()">
<div class="form-group">
<label for="number">Number</label>
<input
formControlName="number"
id="number"
type="text"
class="form-control">
<div *ngIf="f.number.touched && f.number.invalid" class="alert alert-danger">
<div *ngIf="f.number.errors.required">Number is required.</div>
<div *ngIf="f.number.errors.pattern">Enter only number.</div>
</div>
</div>
<button class="btn btn-primary" type="submit" [disabled]="!form.valid">Submit</button>
</form>
</div>
src/app/app.component.ts
import { Component } from '@angular/core';
import { FormBuilder, FormGroup, FormControl, Validators} from '@angular/forms';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
form: FormGroup = new FormGroup({});
constructor(private fb: FormBuilder) {
this.form = fb.group({
number: ['', [Validators.required, Validators.pattern("^[0-9]*$")]]
})
}
get f(){
return this.form.controls;
}
submit(){
console.log(this.form.value);
}
}
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. 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, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Angular Material Select Dropdown with Image Example
- Angular Material Multi Select Dropdown with Search Example
- Angular Material Autocomplete Select Option Event Example
- Angular Input Keydown Event Example
- Angular Input Keypress Event Example
- Angular Radio Button On Change Event Example
- Angular Dropdown Change Event Example
- Angular Radio Button with Reactive Form Tutorial
- How to Use Bootstrap Tooltip in Angular?
- How to Upload Multiple Images in Angular?
- How to use Highcharts in Angular?
- Angular Form Validation no Whitespace Allowed Example
- How to Get Current URL in Angular?
- How to Create Custom Validators in Angular 9/8?