RegularExpression for validation

  • Thread starter Thread starter Phillip Vong
  • Start date Start date
P

Phillip Vong

I do not know how to write regularexpressions. I was wondering if someone
could show me how to write one for my validation that will not allow more
than 250 characters.

Thanks
Phil
 
I would say how, but can I suggest you try searching the web first on
regular expressions in google?

maybe try "regular expression simple examples"

if your stuck on something then Ill gladly help
 
actually you could probably get away with just ".{1,250}"

--
--
Regards

John Timney (MVP)


John Timney (MVP) said:
Try this.

" ^[a-zA-Z0-9]{1,250}$"

regards

John Timney (MVP)


Phillip Vong said:
I do not know how to write regularexpressions. I was wondering if someone
could show me how to write one for my validation that will not allow more
than 250 characters.

Thanks
Phil
 
Back
Top