^start of line
Negated Character Class[^\t]*+ *+matches any number of characters outside the set below:
\ta tab character (ASCII 9)
\ta tab character (ASCII 9)
Negated Character Class[^\t]*+ *+matches any number of characters outside the set below:
\ta tab character (ASCII 9)
\ta tab character (ASCII 9)
.{3}any character, repeated exactly 3 times
\|the literal | (12410 / 1748 / 7C16)
NODEthe literal text NODE (case sensitive) Negated Character Class[^\t]*+ *+matches any number of characters outside the set below:
\ta tab character (ASCII 9)
\ta tab character (ASCII 9)
Negated Character Class[^\n]*+ *+matches any number of characters outside the set below:
\na line-feed (newline) character (ASCII 10)
\r?optionally matches a carriage return (ASCII 13)
\na line-feed (newline) character (ASCII 10)
Positive Lookahead(?=[\s\S]*^[^\t]*\t[^\t]*\t.{3}\|\1\t) *matches any number of characters from the set below:
\sany whitespace character
\Sany non-whitespace character
^start of line
Negated Character Class[^\t]* *matches any number of characters outside the set below:
\ta tab character (ASCII 9)
\ta tab character (ASCII 9)
Negated Character Class[^\t]* *matches any number of characters outside the set below:
\ta tab character (ASCII 9)
\ta tab character (ASCII 9)
.{3}any character, repeated exactly 3 times
\|the literal | (12410 / 1748 / 7C16)
\1the text saved by group 1
\ta tab character (ASCII 9)
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