\.the literal . (4610 / 568 / 2E16)
messagethe literal text message (case sensitive) \(the literal ( (4010 / 508 / 2816)
(?s)applies the following effective flags to the remainder of the pattern: gs s modifier: single line. Allows a dot to match line terminators
.+?any character, repeated at least once
\)the literal ) (4110 / 518 / 2916)
\s*any whitespace character, repeated any number of times
Non-Capturing Group(?:\.(?:log|build)\(\)\s*)+ +repeats the group contents below at least once:
\.the literal . (4610 / 568 / 2E16)
Non-Capturing Group(?:log|build) logthe literal text log (case sensitive) buildthe literal text build (case sensitive) \(the literal ( (4010 / 508 / 2816)
\)the literal ) (4110 / 518 / 2916)
\s*any whitespace character, repeated any number of times
\s*any whitespace character, repeated any number of times
;the literal ; (5910 / 738 / 3B16)
g modifier: global. Finds all matches instead of stopping after the first