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
This:
\d+
should work
Edit, no clue why I added the "+", without it works just as fine.
\d