0
Regex Modifiers
Forum / Questions & Answers
I was traipsing through a Canary system I inherited and found a Model Rule with a match field of
(?i)##1$
I did not know you could do regex flags like that! Can you use any of the .net modifiers? https://learn.microsoft.com/en-us/dotnet/standard/base-types/regular-expression-options
If I just do (?<whatever>) at the beginning of the field, will that work?

4 replies
-
Hi ,
(?i) does a case-insensitive search (which all the new custom functions do under the cover by using this syntax).
We would expect any modifiers supported by the .NET framework version of RegEx to work.
