\{the literal { (12310 / 1738 / 7B16)
Comment: Match opening brace
Non-Capturing Group(?: # Start non-capturing group
[^{}]++ # Match non-brace characters without backtracking
| # or
(?&block) # Recursively match the last captured group
)* *repeats the group contents below any number of times:
1st Alternative # Start non-capturing group
[^{}]++ # Match non-brace characters without backtracking
Comment: Start non-capturing group
Negated Character Class[^{}]++ ++matches at least one character outside the set below:
{the literal { (12310 / 1738 / 7B16)
}the literal } (12510 / 1758 / 7D16)
Comment: Match non-brace characters without backtracking
2nd Alternative # or
(?&block) # Recursively match the last captured group
Comment: or
(?&block)calls group block as a subroutine
Comment: Recursively match the last captured group
Comment: Match 0 or more times
\}the literal } (12510 / 1758 / 7D16)
Comment: Match closing brace