# Time:the literal text # Time: (case sensitive) \sany whitespace character
Group timestamp(?<timestamp>.*) .*any character (except for line terminators), repeated any number of times
\na line-feed (newline) character (ASCII 10)
#the literal # (3510 / 438 / 2316)
.*any character (except for line terminators), repeated any number of times
Id:the literal text Id: (case sensitive) \sany whitespace character
.*any character (except for line terminators), repeated any number of times
\na line-feed (newline) character (ASCII 10)
#the literal # (3510 / 438 / 2316)
\sany whitespace character
Query_time:the literal text Query_time: (case sensitive) \sany whitespace character
Group duration(?<duration>[\d.]*) *matches any number of characters from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
\sany whitespace character
.*any character (except for line terminators), repeated any number of times
time:the literal text time: (case sensitive) \sany whitespace character
Group lock_time(?<lock_time>[\d.]*) *matches any number of characters from the set below:
\da digit
.the literal . (4610 / 568 / 2E16)
\sany whitespace character
.*any character (except for line terminators), repeated any number of times
_sent:the literal text _sent: (case sensitive) \sany whitespace character
Group returned(?<returned>\d*) \d*a digit, repeated any number of times
\sany whitespace character
.*any character (except for line terminators), repeated any number of times
_examined:the literal text _examined: (case sensitive) \sany whitespace character
Group searched(?<searched>\d*) \d*a digit, repeated any number of times
\na line-feed (newline) character (ASCII 10)
*matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
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