Escapes all RegExp tokens in a string.
RegExp.escape('really?') -> 'really\?' RegExp.escape('yes.') -> 'yes.' RegExp.escape('(not really)') -> '(not really)'
Escape RegExp tokens in this string.
string
Escaped RegExp tokens in .