(?i)applies the following effective flags to the remainder of the pattern: gmi i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters
Group 1([<[]Assembly: Assembly(File|Informational)?Version) <the literal < (6010 / 748 / 3C16)
[the literal [ (9110 / 1338 / 5B16)
Assembly: Assemblythe literal text Assembly: Assembly (case insensitive) Group 2(File|Informational)? ?repeats the group contents below at most once:
Filethe literal text File (case insensitive) 2nd AlternativeInformational Informationalthe literal text Informational (case insensitive) Versionthe literal text Version (case insensitive) \(the literal ( (4010 / 508 / 2816)
\"the literal " (3410 / 428 / 2216)
Negated Character Class[^\"]* *matches any number of characters outside the set below:
\"the literal " (3410 / 428 / 2216)
\"the literal " (3410 / 428 / 2216)
\)the literal ) (4110 / 518 / 2916)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string