
Last chance! 50% off unlimited learning
Sale ends in
Escapes any characters that would have special meaning in a reqular expression.
escapeRegex(string)
escapeBS(string)
string being operated on.
The value of the string with any characters that would have special meaning in a reqular expression escaped.
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.
escapeBS
will escape any backslash \ in a string.
# NOT RUN {
string <- "this\\(system) {is} [full]."
escapeRegex(string)
escapeBS(string)
# }
Run the code above in your browser using DataLab