I want to put a validation in angular 6. It should contain alpha numeric characters. Either Alphabets or Numeric, 3 to 9 digits only. It should start with 1 if it is Numeric.
Can anybody help me with these validation ?
Validators.pattern("[^[A-Z a-z | \d 1 ] ]")
Can anybody please help me in this?