Hi Guys I need a regex that checks if the string starts with two upper-case followed by numbers:
Example: DE123456789
Thanx a lot of.
Literally:
^[A-Z]{2}\d+
^
- start of the string[A-Z]
- an upper case letter{2}
- two of those\d
- a digit+
- one or more of those