-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathnamed-group-regexp.js
39 lines (36 loc) · 1.05 KB
/
named-group-regexp.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @module util/named-group-regexp
*/
'use strict';
const pattern = [
// Capture group start
'\\(\\?',
// Capture group name begins either `P<`, `<` or `'`
'(?:P<|<|\')',
// Everything up to the next `>`` or `'` (depending) will be the capture group name
'([^>\']+)',
// Capture group end
'[>\']',
// Get everything up to the end of the capture group: this is the RegExp used
// when matching URLs to this route, which we can use for validation purposes.
'((?:[^)(]|\\((?:[^)(]|\\((?:[^)(]|\\([^)(]*\\))*\\))*\\))*)',
// Capture group end
'\\)',
].join( '' );
module.exports = {
/**
* String representation of the exported Regular Expression; we construct this
* RegExp from a string to enable more detailed annotation and permutation
*
* @prop {String} pattern
*/
pattern: pattern,
/**
* Regular Expression to identify a capture group in PCRE formats
* `(?<name>regex)`, `(?'name'regex)` or `(?P<name>regex)` (see
* regular-expressions.info/refext.html)
*
* @prop {RegExp} namedGroupRE
*/
namedGroupRE: new RegExp( pattern ),
};