Group 1(BB(?:\|\d){4,6}\|[^\s|]{3}\|[^\s|]{4}\|) BBthe literal text BB (case sensitive) Non-Capturing Group(?:\|\d){4,6} {4,6}repeats the group contents below between 4 and 6 times:
\|the literal | (12410 / 1748 / 7C16)
\da Unicode decimal digit
\|the literal | (12410 / 1748 / 7C16)
Negated Character Class[^\s|]{3} {3}matches exactly 3 characters outside the set below:
\sa Unicode whitespace character
|the literal | (12410 / 1748 / 7C16)
\|the literal | (12410 / 1748 / 7C16)
Negated Character Class[^\s|]{4} {4}matches exactly 4 characters outside the set below:
\sa Unicode whitespace character
|the literal | (12410 / 1748 / 7C16)
\|the literal | (12410 / 1748 / 7C16)
9{2,9}the literal 9 (5710 / 718 / 3916) , repeated between 2 and 9 times
\|the literal | (12410 / 1748 / 7C16)
9{2,9}the literal 9 (5710 / 718 / 3916) , repeated between 2 and 9 times
\da Unicode decimal digit
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