NET Regex. (ignoring)
I want it to fit
field_x_12
field_a_ABC
field_r_something
etc.
My question is: why the operator .does not work in this regex:
field_[.]_.*
but this (mostly equivalent) regular expression really works:
field_[a-z]_.*
Is there something that I am missing in the dot operator .?
Earlz source
share