failingthe literal text failing (case sensitive) *?matches any number of characters from the set below:
\wany word character
\Wany non-word character
\d*a digit, repeated any number of times
\)the literal ) (4110 / 518 / 2916)
\sany whitespace character
*?matches any number of characters from the set below:
\wany word character
\Wany non-word character
\:the literal : (5810 / 728 / 3A16)
*?matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
Assertthe literal text Assert (case sensitive) *?matches any number of characters from the set below:
\wany word character
\Wany non-word character
\na line-feed (newline) character (ASCII 10)
.*any character (except for line terminators), repeated any number of times
srcthe literal text src (case sensitive) Negated Character Class[^:]+ +matches at least one character outside the set below:
:the literal : (5810 / 728 / 3A16)
:the literal : (5810 / 728 / 3A16)
\d+a digit, repeated at least once
:the literal : (5810 / 728 / 3A16)
\d+a digit, repeated at least once
g modifier: global. Finds all matches instead of stopping after the first