^start of line
\s{8,9}any whitespace character, repeated between 8 and 9 times
\d{1,2}a digit, repeated between 1 and 2 times
\s{2}any whitespace character, repeated exactly 2 times
\|the literal | (12410 / 1748 / 7C16)
\s{9,10}any whitespace character, repeated between 9 and 10 times
\d{1,2}a digit, repeated between 1 and 2 times
\s{2}any whitespace character, repeated exactly 2 times
\|the literal | (12410 / 1748 / 7C16)
\s{9,10}any whitespace character, repeated between 9 and 10 times
\d{1,2}a digit, repeated between 1 and 2 times
$end of line
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