If I am using a RegEx as a mask for a TextBox and the mask should allow a format of 000-XXXXXX, meaning for example that it allows 3 letters, a dash, then 6 numbers, how can I allow the user to only have to type in the first 3 characters of the mask to use in searching and not have what they typed in be invalid because it does not satisfy a the complete RegEx?
If I am using a RegEx as a mask for a TextBox and the
Share
You can make parts of the regex optional:
Explanation: