Named Capture Group timestamp (?<timestamp>[^|]+)
Match a single character not present in the list below [^|]+
+ Quantifier — Matches between one and unlimited times, as many times as possible, giving back as needed (greedy)
| matches the character | literally (case sensitive)
\| matches the character | literally (case sensitive)
Named Capture Group severity (?<severity>[^|]+)
Match a single character not present in the list below [^|]+
+ Quantifier — Matches between one and unlimited times, as many times as possible, giving back as needed (greedy)
| matches the character | literally (case sensitive)
\| matches the character | literally (case sensitive)
Named Capture Group x (?<x>[^|]+)
Match a single character not present in the list below [^|]+
\| matches the character | literally (case sensitive)
Named Capture Group y (?<y>[^|]+)
\| matches the character | literally (case sensitive)
Named Capture Group a (?<a>[^|]+)
\| matches the character | literally (case sensitive)
Named Capture Group b (?<b>[^|]+)
\| matches the character | literally (case sensitive)
Named Capture Group c (?<c>[^|]+)
Non-capturing group (?:\|(?<d>[^|]+))?