Regular expression validator
Hi,
I have few attributes of data type "string", i want user to enter only numeric values (0 to 9) into them. I am looking for a regular expression validator.
I tried "[0-9]{8}" , but with this user should compulsory give 8 numeric values, my requirement is "user should be able to enter any number of values (max 10 & min 1)"
Pls share the expression through which i can achieve that
I have few attributes of data type "string", i want user to enter only numeric values (0 to 9) into them. I am looking for a regular expression validator.
I tried "[0-9]{8}" , but with this user should compulsory give 8 numeric values, my requirement is "user should be able to enter any number of values (max 10 & min 1)"
Pls share the expression through which i can achieve that