Write a regular expression that matches a string if it contains at least one digit.
"c8" ➞ true "23cc4" ➞ true "abwekz" ➞ false "sdfkxi" ➞ false
This challenge is designed to use RegEx only.