\na line-feed (newline) character (ASCII 10)
.*any Unicode character (except for line terminators), repeated any number of times
:the literal : (5810 / 728 / 3A16)
\sa Unicode whitespace character
.*any Unicode character (except for line terminators), repeated any number of times
-the literal - (4510 / 558 / 2D16)
.*any Unicode character (except for line terminators), repeated any number of times
Group 3(ð€|ð|ðŒ|â¡ïž|ð¶|ðºâïž|ððº|ðº|ð|ðµïž|ð¥|ð¶|ð|ðŒ|â®ïž|ð|ð«|ð®|ð|ð§âð¬|ð|ð¯|ðŠ
|ð|ð|ð€|ðª|ð|ð§|ð|ð±ð|ð³|â|ð·|ð€¯|ð€|ð|ð|ð|ðšâð¬) ð€the literal ð€ (12810010 / 3721448 / 1F46416)
ðthe literal ð (12813010 / 3722028 / 1F48216)
ðŒthe literal ðŒ (12812410 / 3721748 / 1F47C16)
â¡ïžthe literal text â¡ïž ð¶the literal ð¶ (12805410 / 3720668 / 1F43616)
6th Alternativeðºâïž ðºâïžthe literal text ðºâïž ððºthe literal text ððº ðºthe literal ðº (12805810 / 3720728 / 1F43A16)
ðthe literal ð (12813910 / 3722138 / 1F48B16)
ðµïžthe literal text ðµïž ð¥the literal ð¥ (12829310 / 3724458 / 1F52516)
ð¶the literal ð¶ (12811810 / 3721668 / 1F47616)
ðthe literal ð (12806510 / 3721018 / 1F44116)
ðŒthe literal ðŒ (12857210 / 3730748 / 1F63C16)
â®ïžthe literal text â®ïž ðthe literal ð (12840510 / 3726258 / 1F59516)
ð«the literal ð« (12829910 / 3724538 / 1F52B16)
ð®the literal ð® (12830210 / 3724568 / 1F52E16)
ðthe literal ð (12791710 / 3716558 / 1F3AD16)
20th Alternativeð§âð¬ ð§âð¬the literal text ð§âð¬ ðthe literal ð (12858310 / 3731078 / 1F64716)
40th Alternativeðšâð¬ \sa Unicode whitespace character
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string
u modifier: unicode. Treats the pattern and subject as UTF-16
g modifier: global. Finds all matches instead of stopping after the first
J modifier: Allow duplicate subpattern names