Enum

enum RegexFlag

public enum RegexFlag {
    | IgnoreCase
    | MultiLine
    | Unicode
}

Description: Specifies the regular expression matching pattern.

IgnoreCase

IgnoreCase

Description: Specifies the matching pattern as case-insensitive pattern.

MultiLine

MultiLine

Description: Specifies the matching pattern as multi-line text pattern.

Unicode

Unicode

Description: Specifies the matching pattern as Unicode pattern.