\d+a digit, repeated at least once
the literal (3210 / 408 / 2016)
\|the literal | (12410 / 1748 / 7C16)
the literal (3210 / 408 / 2016)
Group events_raw(?<events_raw>[^\|]+) Negated Character Class[^\|]+ +matches at least one character outside the set below:
\|the literal | (12410 / 1748 / 7C16)
the literal (3210 / 408 / 2016)
\|the literal | (12410 / 1748 / 7C16)
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
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters