Named Capturing Group
A Named Capturing Group is a sub-pattern within a regex (called a 'capturing group') that has been given a name, allowing one to refer to that sub-pattern.
It depends on the regex flavor what the syntax is for specifying named capturing groups.
Within TEv2, we use the JavaScript flavor (ECMAScript), which has specified a syntax for named capturing groups.