J
John B
Could anyone tell me why the following do not match?
^ABC_\d{6}_\d{6}$
Should match(twice):
ABC_123456_789123
ABC_123456_789123
It matches:
ABC_123456_789123
But not the double one.
Regex options set are:
RegexOptions.IgnoreCase | RegexOptions.IgnorePatternWhitespace |
RegexOptions.Multiline
TIA
JB
^ABC_\d{6}_\d{6}$
Should match(twice):
ABC_123456_789123
ABC_123456_789123
It matches:
ABC_123456_789123
But not the double one.
Regex options set are:
RegexOptions.IgnoreCase | RegexOptions.IgnorePatternWhitespace |
RegexOptions.Multiline
TIA
JB