I haven\'t used regular expressions at all, so I\'m having difficulty troubleshooting. I want the regex to match only when the contained string is all numbers; but with the
Sorry for ugly formatting. For any number of digits:
[0-9]*
For one or more digit:
[0-9]+