Regex expression working except in dotNet --
- by Matt
I am trying to match an expression of type
field:"value"
but not
field:value
I have written
([a-z]+)\s*?:\s*?"(.+)"\s*?
and this works excepts in dotNet
Is there any reason why this might be? Something I am missing?