"the literal " (3410 / 428 / 2216)
Group 1([a-zA-Z]?[a-zA-Z0-9].*) ?matches at most one character from the set below:
a-zone character from a (9710) to z (12210) (case insensitive)
A-Zone character from A (6510) to Z (9010) (case insensitive)
Character Class[a-zA-Z0-9] a-zone character from a (9710) to z (12210) (case insensitive)
A-Zone character from A (6510) to Z (9010) (case insensitive)
0-9one character from 0 (4810) to 9 (5710)
.*any character (except for line terminators), repeated any number of times
"the literal " (3410 / 428 / 2216)
?optionally matches the literal (3210 / 408 / 2016)
:the literal : (5810 / 728 / 3A16)
?optionally matches the literal (3210 / 408 / 2016)
Group 2((true|false|null)|([\d].*)) 1st Alternative(true|false|null) truethe literal text true (case insensitive) falsethe literal text false (case insensitive) nullthe literal text null (case insensitive) .*any character (except for line terminators), repeated any number of times
,the literal , (4410 / 548 / 2C16)
g modifier: global. Finds all matches instead of stopping after the first
i modifier: insensitive. Matches without distinguishing uppercase and lowercase letters
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string