Sentthe literal text Sent (case sensitive) Receivedthe literal text Received (case sensitive) .*?any Unicode character (except for line terminators), repeated any number of times
\da Unicode decimal digit
.*?any Unicode character (except for line terminators), repeated any number of times
Non-Capturing Group(?:AM|PM) AMthe literal text AM (case sensitive) PMthe literal text PM (case sensitive) \sa Unicode whitespace character
Non-Capturing Group(?:to\s|from\s) tothe literal text to (case sensitive) \sa Unicode whitespace character
fromthe literal text from (case sensitive) \sa Unicode whitespace character
\w*?a Unicode word character, repeated any number of times
\na line-feed (newline) character (ASCII 10)
\na line-feed (newline) character (ASCII 10)
*?matches any number of characters from the set below:
\sa Unicode whitespace character
\Sany character that is not Unicode whitespace
Non-Capturing Group(?:\n\-{5}|$) \na line-feed (newline) character (ASCII 10)
\-{5}the literal - (4510 / 558 / 2D16) , repeated exactly 5 times
$end of string, or before its final line terminator
Character Class[\n\S\s]*? *?matches any number of characters from the set below:
\na line-feed (newline) character (ASCII 10)
\Sany character that is not Unicode whitespace
\sa Unicode whitespace character
g modifier: global. Finds all matches instead of stopping after the first