\d{4}a Unicode decimal digit, repeated exactly 4 times
-the literal - (4510 / 558 / 2D16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
\sa Unicode whitespace character
\d{2}a Unicode decimal digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
,the literal , (4410 / 548 / 2C16)
\d{3}a Unicode decimal digit, repeated exactly 3 times
\sa Unicode whitespace character
INFOthe literal text INFO (case sensitive) \s+a Unicode whitespace character, repeated at least once
THOUGHTS:the literal text THOUGHTS: (case sensitive) .*?any Unicode character, repeated any number of times
Positive Lookahead(?=\d{4}-\d{2}-\d{2}\s\d{2}:\d{2}:\d{2},\d{3}\sINFO\s+THOUGHTS:) \d{4}a Unicode decimal digit, repeated exactly 4 times
-the literal - (4510 / 558 / 2D16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
-the literal - (4510 / 558 / 2D16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
\sa Unicode whitespace character
\d{2}a Unicode decimal digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
:the literal : (5810 / 728 / 3A16)
\d{2}a Unicode decimal digit, repeated exactly 2 times
,the literal , (4410 / 548 / 2C16)
\d{3}a Unicode decimal digit, repeated exactly 3 times
\sa Unicode whitespace character
INFOthe literal text INFO (case sensitive) \s+a Unicode whitespace character, repeated at least once
THOUGHTS:the literal text THOUGHTS: (case sensitive) 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
s modifier: single line. Allows a dot to match line terminators