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.

Copy Link

Version

Down Chevron

Install

install.packages('rebus.numbers')

Monthly Downloads

662

Version

0.0-1

License

Unlimited

Maintainer

Last Published

December 16th, 2015

Functions in rebus.numbers (0.0-1)