Hello I have a .NET Regex. (with ignore-case)
I want it to match
field_x_12
field_a_ABC
field_r_something
etc
My question is why the .
operator doesn't work in this regex:
field_[.]_.*
yet this (equivalent basically) regex does work:
field_[a-z]_.*
Is there something I'm missing about the dot operator .
?