Hi,
I want to check whether the string is valid or not by using Regular Expression and c# asp.net.
This compound string is valid when:
- Length of the string = 12;
- The first two letters of the string must be = T7 or T8 or TE or TJ or TK or TL or TN or TU or TV or TW or TX or TY;
- Third and fourth value of the string must always be 00;
- The remaining eight values of the string are only numbers from 0 to 9.
For example this is a valid string
TE0022600014
Instead this is an invalid string
DN10220124A3
Any suggestion, please.