Lines Matching refs:named
19 /named captures/. This feature allows you to assign a name to a capture, and
21 named captures, both in dynamic and in static regexes.
26 regex engines with the syntax of named captures. You can create a named capture
28 for instance, is a regular expression that creates a named capture and refers
31 // Create a named capture called "char" that matches a single
38 Once you have executed a match or search operation using a regex with named
39 captures, you can access the named capture through the _match_results_ object
56 You can also refer back to a named capture from within a substitution string.
58 to use named captures when doing string substitution.
65 Notice that you have to specify `format_perl` when using named captures. Only
74 If you're using static regular expressions, creating and using named
85 _match_results_ to access the named capture:
102 When doing string substitutions with _regex_replace_, you can use named