"the literal " (3410 / 428 / 2216)
Character Class[\w\s\n\r\X]+? +?matches at least one character from the set below:
\wa Unicode word character
\sa Unicode whitespace character
\na line-feed (newline) character (ASCII 10)
\ra carriage return (ASCII 13)
\Xthe literal X (8810 / 1308 / 5816) (case sensitive)
"the literal " (3410 / 428 / 2216)
\|the literal | (12410 / 1748 / 7C16)
"the literal " (3410 / 428 / 2216)
Character Class[\X\w\s\n\r]+? +?matches at least one character from the set below:
\Xthe literal X (8810 / 1308 / 5816) (case sensitive)
\wa Unicode word character
\sa Unicode whitespace character
\na line-feed (newline) character (ASCII 10)
\ra carriage return (ASCII 13)
"the literal " (3410 / 428 / 2216)
\|the literal | (12410 / 1748 / 7C16)
"the literal " (3410 / 428 / 2216)
Character Class[\X\w\s\n\r]+? +?matches at least one character from the set below:
\Xthe literal X (8810 / 1308 / 5816) (case sensitive)
\wa Unicode word character
\sa Unicode whitespace character
\na line-feed (newline) character (ASCII 10)
\ra carriage return (ASCII 13)
"the literal " (3410 / 428 / 2216)
g modifier: global. Finds all matches instead of stopping after the first
u modifier: unicode. Treats the pattern and subject as UTF-16