escapeRegex: Escapes any characters that would have special meaning in a...

Description Usage Arguments Details Value Note Author(s) See Also Examples

Description

Escapes any characters that would have special meaning in a reqular expression.

Usage

1
escapeRegex(string)

Arguments

string

string being operated on.

Details

escapeRegex will escape any characters that would have special meaning in a reqular expression. For any string grep(regexpEscape(string), string) will always be true.

Value

The value of the string with any characters that would have special meaning in a reqular expression escaped.

Note

Note that this function was copied literally from the Hmisc package (to prevent importing the entire package for one line of code).

Author(s)

Charles Dupont
Department of Biostatistics
Vanderbilt University

Maintainer: Gjalt-Jorn Peters <gjalt-jorn@userfriendlyscience.com>

See Also

grep, Hmisc, http://biostat.mc.vanderbilt.edu/wiki/Main/Hmisc, https://github.com/harrelfe/Hmisc

Examples

1
2
string <- "this\\(system) {is} [full]."
escapeRegex(string)

Matherion/userfriendlyscience documentation built on May 7, 2019, 3:41 p.m.