In the last lesson, you learned how to use ranges, for example, [0-9]
But there is an EVEN shorter way to write this.
In Regex there are predefined character classes:
\w - any letter, number, or underscore
\W - anything that is not a letter, number, or underscore
\d - any number
\D - anything that is not a number
\s - any whitespace character
\S - anything that is not a whitespace character
Match all numbers