\ban ASCII word boundary
itemthe literal text item (case insensitive) \ban ASCII word boundary
.*?any character (except for line terminators), repeated any number of times
\ban ASCII word boundary
Non-Capturing Group(?:1|one) 1the literal 1 (4910 / 618 / 3116)
onethe literal text one (case insensitive) \ban ASCII word boundary
(*COMMIT)if the rest of the pattern fails, ends the entire match operation without trying another starting position
\W+any non-word character, repeated at least once
Non-Capturing Group(?:\w+\W+){0,2}? {0,2}?repeats the group contents below between 0 and 2 times:
\w+any word character, repeated at least once
\W+any non-word character, repeated at least once
businessthe literal text business (case insensitive) \ban ASCII word boundary
\h*any horizontal whitespace character, repeated any number of times
\R+a newline sequence, repeated at least once
Non-Capturing Group(?:(?!item\h+(?:3|three)\b)[\s\S])*+ *+repeats the group contents below any number of times:
Negative Lookahead(?!item\h+(?:3|three)\b) itemthe literal text item (case insensitive) \h+any horizontal whitespace character, repeated at least once
Non-Capturing Group(?:3|three) 3the literal 3 (5110 / 638 / 3316)
threethe literal text three (case insensitive) \ban ASCII word boundary
\sany whitespace character
\Sany non-whitespace character
itemthe literal text item (case insensitive) \h+any horizontal whitespace character, repeated at least once
Non-Capturing Group(?:3|three) 3the literal 3 (5110 / 638 / 3316)
threethe literal text three (case insensitive) \ban ASCII word boundary
\W+any non-word character, repeated at least once
Non-Capturing Group(?:\w+\W+){0,3}? {0,3}?repeats the group contents below between 0 and 3 times:
\w+any word character, repeated at least once
\W+any non-word character, repeated at least once
legalthe literal text legal (case insensitive) \W+any non-word character, repeated at least once
Non-Capturing Group(?:\w+\W+){0,3}? {0,3}?repeats the group contents below between 0 and 3 times:
\w+any word character, repeated at least once
\W+any non-word character, repeated at least once
proceedingsthe literal text proceedings (case insensitive) \ban ASCII word boundary
g modifier: global. Finds all matches instead of stopping after the first
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters