I need a reqular expression to not match this (/^[a-zA-Z][a-zA-Z0-9]+$/)
pattern, where the string needs to start with alphabet followed by number and alphabet, with no special characters.
I tried with (/^?![a-zA-Z]?![a-zA-Z0-9]+$/)
and not able to get appropriate answer.
Example:
P123454(Invalid)
PP1234(Invalid)
1245P(valid)
@#$124(valid)
Thanks in advance.