(?i)applies the following effective flags to the remainder of the pattern: i i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters
.*any character (except for line terminators), repeated any number of times
Group 1([a-z]{4}\.[a-z]{5}) {4}matches exactly 4 characters from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
\.the literal . (4610 / 568 / 2E16)
{5}matches exactly 5 characters from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
.*any character (except for line terminators), repeated any number of times
asthe literal text as (case insensitive) \s+any whitespace character, repeated at least once
+matches at least one character from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
.*any character (except for line terminators), repeated any number of times