Name:the literal text Name: (case sensitive) \s*any whitespace character, repeated any number of times
.*?any character (except for line terminators), repeated any number of times
\n*a line-feed (newline) character (ASCII 10), repeated any number of times
Company:the literal text Company: (case sensitive) \s*any whitespace character, repeated any number of times
Group Company(?<Company>.*?) .*?any character (except for line terminators), repeated any number of times
\n*a line-feed (newline) character (ASCII 10), repeated any number of times
Company Background:the literal text Company Background: (case sensitive) \s*any whitespace character, repeated any number of times
Group CompanyBackground(?<CompanyBackground>.*?) .*?any character (except for line terminators), repeated any number of times
Non-Capturing Group(?:\n|$) \na line-feed (newline) character (ASCII 10)
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