strongest collation of common regular expressions (quick reference manual)
1. the expression of the check digit digit:^[0-9]*$ n-digit number:^\d{n}$ numbers with at least n digits:^\d{n,}$ numbers with m-n digits:^\d{m,n}$ numbers beginning with zero and non-zero:^(0|[1-9][0-9]*)$ numbers with up to two decimal places starting with nonzero:^([1-9][0-9]*)+(.[0-9]{1,2})?$ positive or negative numbers…