"the literal " (3410 / 428 / 2216)
Group group(?'group'[\w]+) +matches at least one character from the set below:
\wany word character
": {the literal text ": { \s*any whitespace character, repeated any number of times
the literal ↵ (1010 / 128 / A16)
Group 2((\s*"(?'value'[^"]+)": "(?'key'[^"]+)"(?:, *
)?)+) Group 3(\s*"(?'value'[^"]+)": "(?'key'[^"]+)"(?:, *
)?)+ +repeats the group contents below at least once:
\s*any whitespace character, repeated any number of times
"the literal " (3410 / 428 / 2216)
Group value(?'value'[^"]+) Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
": "the literal text ": " Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
"the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:, *
)? ?repeats the group contents below at most once:
,the literal , (4410 / 548 / 2C16)
*the literal (3210 / 408 / 2016) , repeated any number of times
the literal ↵ (1010 / 128 / A16)
,?optionally matches the literal , (4410 / 548 / 2C16)
g modifier: global. Finds all matches instead of stopping after the first