I have two regular expressions that validate the values entered.
One that allows any length of Alpha-Numeric value:
@"^\s*(?<ALPHA>[A-Z0-9]+)\s*"
And the other only allows numerical values:
@"^\s*(?<NUM>[0-9]{10})"
How can I get a numerical string of the length of 11 not to be catched by the NUM
regex.