Group date(?<date>\d{4}\/\d{2}\/\d{2}) \d{4}a digit, repeated exactly 4 times
\/the literal / (4710 / 578 / 2F16)
\d{2}a digit, repeated exactly 2 times
\/the literal / (4710 / 578 / 2F16)
\d{2}a digit, repeated exactly 2 times
\sany whitespace character
.*any character (except for line terminators), repeated any number of times
Devicethe literal text Device (case sensitive) \=the literal = (6110 / 758 / 3D16)
Group device(?<device>[\S]+) +matches at least one character from the set below:
\Sany non-whitespace character
\sany whitespace character
.*any character (except for line terminators), repeated any number of times
Daily_AVG=the literal text Daily_AVG= (case sensitive) Group dailyAvg(?<dailyAvg>[\S]+) +matches at least one character from the set below:
\Sany non-whitespace character
\s*any whitespace character, repeated any number of times
Threshold=the literal text Threshold= (case sensitive) Group threshold(?<threshold>[\S]+) +matches at least one character from the set below:
\Sany non-whitespace character
\s*any whitespace character, repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first