I am using reactive forms with validators. For the arabic name field I am using:
Validators.pattern('[\u0600-\u06FF ]*')
But I can't figure out the pattern for latin letters of A-Z and a-z.
I tried:
Validators.pattern(/^-?([a-z]\d*)?$/)
But it didn't work.