Supersedesthe literal text Supersedes (case sensitive) :?optionally matches the literal : (5810 / 728 / 3A16)
Character Class[\\r\\n ]+ +matches at least one character from the set below:
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
the literal (3210 / 408 / 2016)
+matches at least one character from the set below:
\wa Unicode word character
\-the literal - (4510 / 558 / 2D16)
\sa Unicode whitespace character
Character Class[\\r\\n ]+ +matches at least one character from the set below:
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
the literal (3210 / 408 / 2016)
.*any Unicode character, repeated any number of times
Character Class[\\r\\n ]+ +matches at least one character from the set below:
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
the literal (3210 / 408 / 2016)
Serial Numberthe literal text Serial Number (case sensitive) s?optionally matches the literal s (11510 / 1638 / 7316) (case sensitive)
:?optionally matches the literal : (5810 / 728 / 3A16)
Character Class[ \\r\\n]+ +matches at least one character from the set below:
the literal (3210 / 408 / 2016)
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
.*?any Unicode character, repeated any number of times
the literal (3210 / 408 / 2016)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\*+the literal * (4210 / 528 / 2A16) , repeated at least once
Character Class[\\n\\r ]+ +matches at least one character from the set below:
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
the literal (3210 / 408 / 2016)
\*the literal * (4210 / 528 / 2A16)
Character Class[A-Za-z ]+ +matches at least one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
a-zone character from a (9710) to z (12210) (case sensitive)
the literal (3210 / 408 / 2016)
the literal (3210 / 408 / 2016)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
\*+the literal * (4210 / 528 / 2A16) , repeated at least once
+matches at least one character from the set below:
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
.*?any Unicode character, repeated any number of times
\*+the literal * (4210 / 528 / 2A16) , repeated at least once
Character Class[ \\n\\r]+ +matches at least one character from the set below:
the literal (3210 / 408 / 2016)
\\the literal \ (9210 / 1348 / 5C16)
nthe literal n (11010 / 1568 / 6E16) (case sensitive)
\\the literal \ (9210 / 1348 / 5C16)
rthe literal r (11410 / 1628 / 7216) (case sensitive)
.*?any Unicode character, repeated any number of times
\*the literal * (4210 / 528 / 2A16)
\s+a Unicode whitespace character, repeated at least once
Non-Capturing Group(?:Author[:\w\/]+ ([\.\w\/\s�]+)) Authorthe literal text Author (case sensitive) +matches at least one character from the set below:
:the literal : (5810 / 728 / 3A16)
\wa Unicode word character
\/the literal / (4710 / 578 / 2F16)
the literal (3210 / 408 / 2016)
Character Class[\.\w\/\s�]+ +matches at least one character from the set below:
\.the literal . (4610 / 568 / 2E16)
\wa Unicode word character
\/the literal / (4710 / 578 / 2F16)
\sa Unicode whitespace character
�the literal � (6553310 / 1777758 / FFFD16)
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