You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `match` function returns a function for transforming paths into parameters:
30
-
31
-
-**path** A string.
32
-
-**options**_(optional)_ (See [parse](#parse) for more options)
33
-
-**sensitive** Regexp will be case sensitive. (default: `false`)
34
-
-**end** Validate the match reaches the end of the string. (default: `true`)
35
-
-**decode** Function for decoding strings to params, or `false` to disable all processing. (default: `decodeURIComponent`)
36
-
37
-
```js
38
-
constfn=match("/foo/:bar");
39
-
```
40
-
41
-
**Please note:**`path-to-regexp` is intended for ordered data (e.g. pathnames, hostnames). It can not handle arbitrarily ordered data (e.g. query strings, URL fragments, JSON, etc).
42
-
43
27
### Parameters
44
28
45
-
Parameters match arbitrary strings in a path by matching up to the end of the segment, or up to any proceeding tokens.
46
-
47
-
#### Named parameters
48
-
49
-
Named parameters are defined by prefixing a colon to the parameter name (`:foo`). Parameter names can use any valid unicode identifier characters, similar to JavaScript.
29
+
Parameters match arbitrary strings in a path by matching up to the end of the segment, or up to any proceeding tokens. They are defined by prefixing a colon to the parameter name (`:foo`). Parameter names can use any valid JavaScript identifier, or be double quoted to use other characters (`:"param-name"`).
Parameters can be suffixed with an asterisk (`*`) to denote a zero or more parameter matches.
40
+
Wildcard parameters match one or more characters across multiple segments. They are defined the same way as regular parameters, but are prefixed with an asterisk (`*foo`).
**Please note:**`path-to-regexp` is intended for ordered data (e.g. pathnames, hostnames). It can not handle arbitrarily ordered data (e.g. query strings, URL fragments, JSON, etc).
79
+
80
+
## Compile ("Reverse" Path-To-RegExp)
182
81
183
82
The `compile` function will return a function for transforming parameters into a valid path:
184
83
185
84
-**path** A string.
186
85
-**options** (See [parse](#parse) for more options)
187
-
-**sensitive** Regexp will be case sensitive. (default: `false`)
188
-
-**validate** When `false` the function can produce an invalid (unmatched) path. (default: `true`)
189
86
-**encode** Function for encoding input strings for output into the path, or `false` to disable entirely. (default: `encodeURIComponent`)
- If you are rewriting paths with match and compile, consider using `encode: false` and `decode: false` to keep raw paths passed around.
216
-
- To ensure matches work on paths containing characters usually encoded, consider using [encodeurl](https://github.com/pillarjs/encodeurl) for `encodePath`.
108
+
- To ensure matches work on paths containing characters usually encoded, such as emoji, consider using [encodeurl](https://github.com/pillarjs/encodeurl) for `encodePath`.
217
109
218
110
### Parse
219
111
220
-
The `parse` function accepts a string and returns `TokenData`, the set of tokens and other metadata parsed from the input string. `TokenData` is can used with `$match` and `$compile`.
112
+
The `parse` function accepts a string and returns `TokenData`, the set of tokens and other metadata parsed from the input string. `TokenData` is can used with `match` and `compile`.
221
113
222
114
-**path** A string.
223
115
-**options**_(optional)_
224
116
-**delimiter** The default delimiter for segments, e.g. `[^/]` for `:named` parameters. (default: `'/'`)
225
-
-**encodePath** A function for encoding input strings. (default: `x => x`, recommended: [`encodeurl`](https://github.com/pillarjs/encodeurl) for unicode encoding)
117
+
-**encodePath** A function for encoding input strings. (default: `x => x`, recommended: [`encodeurl`](https://github.com/pillarjs/encodeurl))
226
118
227
119
### Tokens
228
120
229
-
The `tokens` returned by `TokenData` is an array of strings or keys, represented as objects, with the following properties:
230
-
231
-
-`name` The name of the token
232
-
-`prefix`_(optional)_ The prefix string for the segment (e.g. `"/"`)
233
-
-`suffix`_(optional)_ The suffix string for the segment (e.g. `""`)
234
-
-`pattern`_(optional)_ The pattern defined to match this token
235
-
-`modifier`_(optional)_ The modifier character used for the segment (e.g. `?`)
236
-
-`separator`_(optional)_ The string used to separate repeated parameters
121
+
`TokenData` is a sequence of tokens, currently of types `text`, `parameter`, `wildcard`, or `group`.
237
122
238
123
### Custom path
239
124
@@ -242,9 +127,12 @@ In some applications, you may not be able to use the `path-to-regexp` syntax, bu
An effort has been made to ensure ambiguous paths from previous releases throw an error. This means you might be seeing an error when things worked before.
255
143
256
-
### Unexpected `?`, `*`, or `+`
257
-
258
-
In previous major versions `/` and `.` were used as implicit prefixes of parameters. So `/:key?` was implicitly `{/:key}?`. For example:
259
-
260
-
-`/:key?` → `{/:key}?` or `/:key*` → `{/:key}*` or `/:key+` → `{/:key}+`
261
-
-`.:key?` → `{.:key}?` or `.:key*` → `{.:key}*` or `.:key+` → `{.:key}+`
262
-
-`:key?` → `{:key}?` or `:key*` → `{:key}*` or `:key+` → `{:key}+`
144
+
### Unexpected `?` or `+`
263
145
264
-
### Unexpected `;`
146
+
In past releases, `?`, `*`, and `+` were used to denote optional or repeating parameters. As an alternative, try these:
265
147
266
-
Used as a [custom separator](#custom-separator) for repeated parameters.
148
+
- For optional (`?`), use an empty segment in a group such as `/:file{.:ext}`.
149
+
- For repeating (`+`), only wildcard matching is supported, such as `/*path`.
150
+
- For optional repeating (`*`), use a group and a wildcard parameter such as `/files{/*path}`.
267
151
268
-
### Unexpected `!`, `@`, or `,`
152
+
### Unexpected `(`, `)`, `[`, `]`, etc.
269
153
270
-
These characters have been reserved for future use.
271
-
272
-
### Missing separator
273
-
274
-
Repeated parameters must have a separator to be valid. For example, `{:foo}*` can't be used. Separators can be defined manually, such as `{:foo;/}*`, or they default to the suffix and prefix with the parameter, such as `{/:foo}*`.
154
+
Previous versions of Path-to-RegExp used these for RegExp features. This version no longer supports them so they've been reserved to avoid ambiguity. To use these characters literally, escape them with a backslash, e.g. `"\\("`.
275
155
276
156
### Missing parameter name
277
157
278
-
Parameter names, the part after `:`, must be a valid JavaScript identifier. For example, it cannot start with a number or dash. If you want a parameter name that uses these characters you can wrap the name in quotes, e.g. `:"my-name"`.
158
+
Parameter names, the part after `:` or `*`, must be a valid JavaScript identifier. For example, it cannot start with a number or contain a dash. If you want a parameter name that uses these characters you can wrap the name in quotes, e.g. `:"my-name"`.
279
159
280
160
### Unterminated quote
281
161
282
162
Parameter names can be wrapped in double quote characters, and this error means you forgot to close the quote character.
283
163
284
-
### Pattern cannot start with "?"
285
-
286
-
Parameters in `path-to-regexp` must be basic groups. However, you can use features that require the `?` nested within the pattern. For example, `:foo((?!login)[^/]+)` is valid, but `:foo(?!login)` is not.
287
-
288
-
### Capturing groups are not allowed
289
-
290
-
A parameter pattern can not contain nested capturing groups.
291
-
292
-
### Unbalanced or missing pattern
293
-
294
-
A parameter pattern must have the expected number of parentheses. An unbalanced amount, such as `((?!login)` implies something has been written that is invalid. Check you didn't forget any parentheses.
295
-
296
164
### Express <= 4.x
297
165
298
166
Path-To-RegExp breaks compatibility with Express <= `4.x` in the following ways:
299
167
300
-
- The only part of the string that is a regex is within `()`.
301
-
- In Express.js 4.x, everything was passed as-is after a simple replacement, so you could write `/[a-z]+` to match `/test`.
302
-
- The `?` optional character must be used after `{}`.
168
+
- Regexp characters can no longer be provided.
169
+
- The optional character `?` is no longer supported, use braces instead: `/:file{.:ext}`.
303
170
- Some characters have new meaning or have been reserved (`{}?*+@!;`).
304
-
- The parameter name now supports all unicode identifier characters, previously it was only `[a-z0-9]`.
171
+
- The parameter name now supports all JavaScript identifier characters, previously it was only `[a-z0-9]`.
0 commit comments