\[the literal [ (9110 / 1338 / 5B16)
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\/the literal / (4710 / 578 / 2F16)
Group b(?P<b>[0-9]*-[0-9]*) *matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
-the literal - (4510 / 558 / 2D16)
*matches any number of characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
@gthe literal text @g (case sensitive) .any Unicode character (except for line terminators)
usthe literal text us (case sensitive) \(the literal ( (4010 / 508 / 2816)
Group c(?P<c>(?:[0-9]{2}\-){2}2015) Non-Capturing Group(?:[0-9]{2}\-){2} {2}repeats the group contents below exactly 2 times:
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\-the literal - (4510 / 558 / 2D16)
2015the literal text 2015 the literal (3210 / 408 / 2016)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
:the literal : (5810 / 728 / 3A16)
{2}matches exactly 2 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
\)the literal ) (4110 / 518 / 2916)
\]the literal ] (9310 / 1358 / 5D16)
:the literal : (5810 / 728 / 3A16)
\[the literal [ (9110 / 1338 / 5B16)
Group d(?P<d>[A-Z0-9a-z]{13}|.*) 1st Alternative[A-Z0-9a-z]{13} Character Class[A-Z0-9a-z]{13} {13}matches exactly 13 characters from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
0-9one character from 0 (4810) to 9 (5710)
a-zone character from a (9710) to z (12210) (case sensitive)
.*any Unicode character (except for line terminators), repeated any number of times
\]the literal ] (9310 / 1358 / 5D16)
.*any Unicode character (except for line terminators), repeated any number of times
\na line-feed (newline) character (ASCII 10)
Message the literal text Message (case sensitive) (?P=d)the text saved by group d
: Sent delivered receiptthe literal text : Sent delivered receipt (case sensitive) \na line-feed (newline) character (ASCII 10)
\[the literal [ (9110 / 1338 / 5B16)
connected]:the literal text connected]: (case sensitive) g modifier: global. Finds all matches instead of stopping after the first