I\'m currently using the pattern: \\b\\d+\\b, testing it with these entries:
\\b\\d+\\b
numb3r 2 3454 3.214 test
I only want it to catc
^([+-]?[0-9]\d*|0)$
will accept numbers with leading "+", leading "-" and leadings "0"