G
Guadala Harry
How can I make the following RegEx expression case-insensitive?
Regex r = new Regex("({SomeValue:.+?}|{OtherValue:.+?})");
So that it would match, for example, on
"somevalue", "sOmEVAluE", "OTHERVALUE", "OthERvAlUE" and so on...
Thanks!
Regex r = new Regex("({SomeValue:.+?}|{OtherValue:.+?})");
So that it would match, for example, on
"somevalue", "sOmEVAluE", "OTHERVALUE", "OthERvAlUE" and so on...
Thanks!