I am trying to validate a field which can take input as following ways:
- should take 1 to 4 alpha charcters.(but should start with alpha)
- from 5th position to so on should take numbers.(no where from 5th should accept alphabets)
- in between 1-4 characters of alpha it should not allow numbers. 4.even if first 4 characters are entered it should accept.(that 4 characters should be alpha.ex:"asdf") ^[a-zA-Z][0-9]$
i have many things and searched many sites.i could not find it.please help me. Thank you in advance.