I am using pattern in HTML5 validation. I want a regex to check for such username format:
<letters+><digits*> : total length minimum 8
-> starting with letters then optional digits.
examples: w1234567, qweqr123, jsgwiuegn1274124, qwerasdf, awdjwuadhuf, etc.
wrong examples: 12345678, qwe12qwe, 12qweqwe, qweq12, etc.
I tried ([A-z]+[0-9]*){8,}
, It's not working as expected.