new_regexp {webfakes} | R Documentation |
Create a new regular expression to use in webfakes routes
Description
Note that webfakes uses PERL regular expressions.
Usage
new_regexp(x)
Arguments
x |
String scalar containing a regular expression. |
Details
As R does not have data type or class for regular expressions,
you can use new_regexp()
to mark a string as a regular expression,
when adding routes.
Value
String with class webfakes_regexp
.
See Also
The 'Path specification' and 'Path parameters' chapters
of the manual of new_app()
.
Examples
new_regexp("^/api/match/(?<pattern>.*)$")
[Package webfakes version 1.3.1 Index]