How to check if string contains any digit

How to check if string contains any digit

How do I check if a string contains a any digit/ number?
this is the code I cant seem to get working 

  1. Str = "1Mustard Mustard23";
  2. if (Str.contains("[0-9]"))
  3. {
  4. info true ;
  5. }
  6. else 
  7.     {
  8. info false ;
  9.     }