Receivedthe literal text Received (case sensitive) \s*any whitespace character, repeated any number of times
:the literal : (5810 / 728 / 3A16)
\s*any whitespace character, repeated any number of times
bythe literal text by (case sensitive) .*?any character (except for line terminators), repeated any number of times
Group Hop_Time(?P<Hop_Time>[0-9]{2}:[0-9]{2}:[0-9]{2}) {2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string