I need to validate a text box.
the value of this textbox could be:
12 characters long
(only between "0123456789abcdefghABCDEFGH"
but 5th digit must be 4 or 6
or
15 characters long - first 3 digits must be '151' and the rest anything between 0123456789abcdefghABCDEFGH
or
12 characters long
if first digit is 6, then
second character must be d, e, or f
and the rest could be any alphanumberic character.
I need to validate all these against ONLY ONE text box.
Thanks guys