Could anyone tell me why the following do not match?
^ABC_\d{6}_\d{6 }$
Should match(twice):
ABC_123456_7891 23
ABC_123456_7891 23
It matches:
ABC_123456_7891 23
But not the double one.
Regex options set are:
RegexOptions.Ig noreCase | RegexOptions.Ig norePatternWhit espace |
RegexOptions.Mu ltiline
TIA
JB
^ABC_\d{6}_\d{6 }$
Should match(twice):
ABC_123456_7891 23
ABC_123456_7891 23
It matches:
ABC_123456_7891 23
But not the double one.
Regex options set are:
RegexOptions.Ig noreCase | RegexOptions.Ig norePatternWhit espace |
RegexOptions.Mu ltiline
TIA
JB
Comment