regex that checks if the string starts with two upper-case followed by numbers -
hi guys need regex checks if string starts two upper-case followed numbers:
example: de123456789
thanx lot of.
literally:
^[a-z]{2}\d+ ^- start of string[a-z]- upper case letter{2}- 2 of those\d- digit+- 1 or more of those
Comments
Post a Comment