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]?`)])