\]the literal ] (9310 / 1358 / 5D16)
\s*a Unicode whitespace character, repeated any number of times
ANthe literal text AN (case sensitive) AVthe literal text AV (case sensitive) \s+a Unicode whitespace character, repeated at least once
1the literal 1 (4910 / 618 / 3116)
\s+a Unicode whitespace character, repeated at least once
+matches at least one character from the set below:
\wa Unicode word character
\sa Unicode whitespace character
\s+a Unicode whitespace character, repeated at least once
2the literal 2 (5010 / 628 / 3216)
\s+a Unicode whitespace character, repeated at least once
+matches at least one character from the set below:
\wa Unicode word character
\sa Unicode whitespace character
\s+a Unicode whitespace character, repeated at least once
3the literal 3 (5110 / 638 / 3316)
\s+a Unicode whitespace character, repeated at least once
Group 4((?=.*\bda cui\b)|(?!=.*\bda cui\b).*) 1st Alternative(?=.*\bda cui\b) Positive Lookahead(?=.*\bda cui\b) .*any Unicode character (except for line terminators), repeated any number of times
\ba Unicode word boundary
da cuithe literal text da cui (case sensitive) \ba Unicode word boundary
2nd Alternative(?!=.*\bda cui\b).* Negative Lookahead(?!=.*\bda cui\b) =the literal = (6110 / 758 / 3D16)
.*any Unicode character (except for line terminators), repeated any number of times
\ba Unicode word boundary
da cuithe literal text da cui (case sensitive) \ba Unicode word boundary
.*any Unicode character (except for line terminators), repeated any number of times
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