http://regexr.com/3ars8
^(?=.*[0-9])(?=.*[A-z])[0-9A-z-]{17}$
Should match "17 alphanumeric chars, hyphens allowed too, must include at least one letter and at least one number"
It'll correctly match:
ABCDF31U100027743
and correctly decline to match:
AB$DF31U100027743
(and almost any other non-alphanumeric char)
but will apparently allow:
AB^DF31U100027743
You can use the caret symbol (^) at the start of a regular expression to indicate that a match must occur at the beginning of the searched text. If we apply the following regular expression ^a (if a is the starting symbol) to input string abc, it matches a.
These are called anchor characters: If a caret ( ^ ) is at the beginning of the entire regular expression, it matches the beginning of a line. If a dollar sign ( $ ) is at the end of the entire regular expression, it matches the end of a line.
To negate a set or a range, you use the caret character ( ^ ) at the beginning of the set and range. For example, the range [^0-9] matches any character except a digit. It is the same as the character set \D . Notice that regex also uses the caret ( ^ ) as an anchor that matches at the beginning of a string.
In posix-ere and other regex flavors, outside a character class ( [...] ), + acts as a quantifier meaning "one or more, but as many as possible, occurrences of the quantified pattern*. E.g. in javascript, s. replace(/\++/g, '-') will replace a string like ++++ with a single - .
Because your character class [A-z]
matches this symbol.
[A-z]
matches [
, \
, ]
, ^
, _
, `
, and the English letters.
Actually, it is a common mistake. You should use [a-zA-Z]
instead to only allow English letters.
Here is a visualization from Expresso, showing what the range [A-z]
actually covers:
So, this regex (with i
option) won't capture your string.
^(?=.*[0-9])(?=.*[a-z])[0-9a-z-]{17}$
In my opinion, it is always safer to use Ignorecase
option to avoid such an issue and shorten the regex.
regex uses ASCII printable characters from the space to the tilde range.
Whenever we use [A-z]
token it matches the following table highlighted characters. If we use [ -~]
token it matches starting from SPACE
to tilde.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With