a textBox can contain values in format
DL-06-T-7405 (first two Alphabets then two Numbers then Alphabet and next four are Numbers) or DL-06-TT-7405(first two Alphabets then two Numbers then two Alphabet and next four are Numbers) or DL-06-TTT-7405(first two Alphabets then two Numbers then three Alphabet and next four are Numbers)
what i have done so far..
/^[A-Z]{2}[0-9]{2}\w$/
but i can not make other cases case 1: DL-06-TTT-7405 case 2: DL-06-TT-7405 case 3: DL-06-T-7405
how can i allow a textbox takeabove 3 cases only not other than this
-characters in your Regex