id:the literal text id: (case sensitive) \s*any whitespace character, repeated any number of times
"Shapethe literal text "Shape (case sensitive) \.the literal . (4610 / 568 / 2E16)
Negated Character Class[^"]+ +matches at least one character outside the set below:
"the literal " (3410 / 428 / 2216)
Non-Capturing Group(?:[^{}\n]*\n)* *repeats the group contents below any number of times:
Negated Character Class[^{}\n]* *matches any number of characters outside the set below:
{the literal { (12310 / 1738 / 7B16)
}the literal } (12510 / 1758 / 7D16)
\na line-feed (newline) character (ASCII 10)
\na line-feed (newline) character (ASCII 10)
\s*any whitespace character, repeated any number of times
name:the literal text name: (case sensitive) \s*any whitespace character, repeated any number of times
"Triangle"the literal text "Triangle" (case sensitive) g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string