^start of line
{1,2}repeats the group contents below between 1 and 2 times:
\[the literal [ (9110 / 1338 / 5B16)
\w+any word character, repeated at least once
\]the literal ] (9310 / 1358 / 5D16)
\sany whitespace character
.*?any character (except for line terminators), repeated any number of times
\sany whitespace character
-the literal - (4510 / 558 / 2D16)
\sany whitespace character
?repeats the group contents below at most once:
\d+a digit, repeated at least once
?repeats the group contents below at most once:
vthe literal v (11810 / 1668 / 7616) (case sensitive)
\d+a digit, repeated at least once
Group 5(\s(\(\w+p\)|(\[\w+p\]))?){1,2} {1,2}repeats the group contents below between 1 and 2 times:
\sany whitespace character
Group 6(\(\w+p\)|(\[\w+p\]))? ?repeats the group contents below at most once:
\(the literal ( (4010 / 508 / 2816)
\w+any word character, repeated at least once
pthe literal p (11210 / 1608 / 7016) (case sensitive)
\)the literal ) (4110 / 518 / 2916)
2nd Alternative(\[\w+p\]) \[the literal [ (9110 / 1338 / 5B16)
\w+any word character, repeated at least once
pthe literal p (11210 / 1608 / 7016) (case sensitive)
\]the literal ] (9310 / 1358 / 5D16)
.*any character (except for line terminators), repeated any number of 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