Let's see another example:
The order number of a
shipping company has
two digits next to each other.
We want our regular expression
to check that.
As we can see above \d\d
is checking that the
word should have at least two digits
next to each other.
As long as the word
has two digits or more next to each
other, the regular expression
will pass, otherwise it will fail.