Nothing
#' @include utils.R
#' @include escape.R
NULL
#' Or
#'
#' The special binary function \code{\%or\%} can be used to specify a set
#' of optional matches.
#'
#' @rdname or
#' @usage x \%or\% y
#' @param x A string.
#' @param y A string.
#' @family rex
#' @inheritParams capture
`%or%` <- function(x, y) {
group(p(escape(x)), regex("|"), p(escape(y)))
}
register(`%or%`)
#' describeIn or regular function can also be used, useful for more than 2 arguments.
or <- function(...) {
group(regex(paste0(collapse = "|", unlist(escape_dots(...)))))
}
register(or)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.