A C# application my company uses is taking regular expression strings from a database table and matching them on different text files. The problem is that the application has no RegexOptions set as default and I need to use the “Dot matches new line” mode.
Does the engine support inline mode modifiers just as like
"A(?s)(.*?)(?-s)B"
or “global” mode modifiers like in PHP
"/A(.*?)B/s"
Yes. See here.
Should turn on single line mode.