Regular Expression validator

I am using the regular expression validator. I want to be sure the user enters in at least 3 numbers in a text box. I am using /d{3} but it won't allow me to enter more than 3 numbers. Ideally I would like it to accept between 3-5 numbers.<BR><BR>I was looking at the docs and in my opinion that should work...<BR><BR>Mattfigures I figure it out after I post. the answer is /d{3,5} and seems to work for me :]<BR><BR>MattIf you want to allow three or more you could do:<BR><BR>d{3,}<BR><BR>or:<BR><BR>d{2}d+<BR><BR>hth
 
Back
Top