I have got a text string like this:
test1test
I want to check if it contains at least one digit using a regex.
What would this reg
In perl:
if($testString =~ /\d/) { print "This string contains at least one digit" }
where \d matches to a digit.
\d