?repeats the group contents below at most once:
"the literal " (3410 / 428 / 2216)
\w{1,3}any word character, repeated between 1 and 3 times
\W*any non-word character, repeated any number of times
\na line-feed (newline) character (ASCII 10)
E1Ethe literal text E1E (case sensitive) \w{4,5}any word character, repeated between 4 and 5 times
-the literal - (4510 / 558 / 2D16)
\d{2,3}a digit, repeated between 2 and 3 times
-the literal - (4510 / 558 / 2D16)
\d{2,3}a digit, repeated between 2 and 3 times
Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
"the literal " (3410 / 428 / 2216)