*?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
*matches any number of characters from the set below:
\sany whitespace character
def the literal text def (case insensitive) \w+any word character, repeated at least once
Implthe literal text Impl (case insensitive) \(the literal ( (4010 / 508 / 2816)
.*any character (except for line terminators), repeated any number of times
\)the literal ) (4110 / 518 / 2916)
:the literal : (5810 / 728 / 3A16)
+matches at least one character from the set below:
\sany whitespace character
+matches at least one character from the set below:
\sany whitespace character
*?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
+matches at least one character from the set below:
\sany whitespace character
*?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
defthe literal text def (case insensitive) $end of string, or before its final line terminator
*matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
$end of string, or before its final line terminator
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters