Showing posts with label angularjs allow only numbers in textbox. Show all posts
Showing posts with label angularjs allow only numbers in textbox. Show all posts

Validator. Pattern for only numbers in angular 4

We usually validate the form control by using Validator component from angular/forms.

formControlAge = new FormControl('',[
(control : AbstractControl) => Validators.pattern(`[0-9]+[A-Z]?`)])