I haven\'t used regular expressions soo much, so I\'m having difficulty . I want regex that only validates that the field contains digits, but that does not care about how many.
A simpler regex would be to invert your match and check for non-digit numbers: \D.
\D