Hello I have one input box here I enter 10 digit string so I want following validation on that entered string
- First 4 letter should be alphabet
- 5 to 9 letter should be numeric and
- Last 10 letter should be alphabet
Is there any validation process for this
For example
String should be ABBC12345A
It is valid string so how I add validation on input box in my angular
/^([a-zA-Z]){4}([0-9]){5}([a-zA-Z]){1}$/