Group Catergory(?<Catergory>.+[A-z]{2}\d{4}) .+any character (except for line terminators), repeated at least once
{2}matches exactly 2 characters from the set below:
A-zone character from A (6510) to z (12210) (case sensitive)
\d{4}a digit, repeated exactly 4 times
\s+any whitespace character, repeated at least once
Group FY1(?<FY1>[\d.,-]+(?=\s)) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\sany whitespace character
\s*any whitespace character, repeated any number of times
Group FY2(?<FY2>[\d.,-]+(?=\s)) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\sany whitespace character
\s*any whitespace character, repeated any number of times
Group FY3(?<FY3>[\d.,-]+(?=\s)) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\sany whitespace character
\s*any whitespace character, repeated any number of times
Group FY4(?<FY4>[\d.,-]+(?=\s)) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\sany whitespace character
\s*any whitespace character, repeated any number of times
Group FY5(?<FY5>[\d.,-]+) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\s*any whitespace character, repeated any number of times
Group FY6(?<FY6>[\d.,-]+) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\s*any whitespace character, repeated any number of times
Group FY7(?<FY7>[\d.,-]+) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\s*any whitespace character, repeated any number of times
Group FY8(?<FY8>[\d.,-]+) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
\s*any whitespace character, repeated any number of times
Group FY9(?<FY9>[\d.,-]+) +matches at least one character from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
,the literal , (4410 / 548 / 2C16)
-the literal - (4510 / 558 / 2D16)
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