README.md

Project Status: Active - The project has reached a stable, usable state and is being actively developed. Is the package on CRAN? Build Status

rebus.numbers: Regular Expression Builder, Um, Something (Number-Related Functionality)

This package contains number-related functionality for the rebus package. It is primarily intended for other R package developers. For interactive use, try rebus instead.

Build regular expressions in a human readable way

Regular expressions are a very powerful tool, but the syntax is terse enough to be difficult to read. This makes bugs easy to introduce and hard to find. This package contains functions to make building regular expressions easier.

Installation

To install the stable version, type:

install.packages("rebus.numbers")

To install the development version, you first need the devtools package.

install.packages("devtools")

Then you can install the rebus.numbers package using

library(devtools)
install_github("richierocks/rebus.numbers")

Package contents

number_range creates a regex that matches a range of integers. For example, number_range(-12, 123) generates (?:-(?:[1-9]|1[0-2])|(?:0[0-9]{2}|1[0-1][0-9]|12[0-3])).

roman generates a regex to match roman numerals, and ROMAN provides the constant form. For example roman(2, 3) matches two or three roman numbers.



Try the rebus.numbers package in your browser

Any scripts or data that you put into this service are public.

rebus.numbers documentation built on May 1, 2019, 7:06 p.m.