Group 1(public|protected|private|static|\s) publicthe literal text public (case sensitive) protectedthe literal text protected (case sensitive) privatethe literal text private (case sensitive) staticthe literal text static (case sensitive) \sany whitespace character
+the literal (3210 / 408 / 2016) , repeated at least once
Character Class[\w\<\>\[\]]+ +matches at least one character from the set below:
\wany word character
\<the literal < (6010 / 748 / 3C16)
\>the literal > (6210 / 768 / 3E16)
\[the literal [ (9110 / 1338 / 5B16)
\]the literal ] (9310 / 1358 / 5D16)
\s+any whitespace character, repeated at least once
\w+any word character, repeated at least once
*the literal (3210 / 408 / 2016) , repeated any number of times
\(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)
g modifier: global. Finds all matches instead of stopping after the first