publicthe literal text public (case sensitive) \s+any whitespace character, repeated at least once
staticthe literal text static (case sensitive) \s+any whitespace character, repeated at least once
Negated Character Class[^(]+ +matches at least one character outside the set below:
(the literal ( (4010 / 508 / 2816)
\(the literal ( (4010 / 508 / 2816)
Negated Character Class[^)]*? *?matches any number of characters outside the set below:
)the literal ) (4110 / 518 / 2916)
\)the literal ) (4110 / 518 / 2916)
\s*any whitespace character, repeated any number of times
\{the literal { (12310 / 1738 / 7B16)
.*?any character, repeated any number of times
\na line-feed (newline) character (ASCII 10)
\}the literal } (12510 / 1758 / 7D16)