escapeRegExp
Escapes a string to use in a regular expression.
- Use
String.prototype.replace()to escape special characters.
const escapeRegExp = str => str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');escapeRegExp('(test)'); // \\(test\\)
Escapes a string to use in a regular expression.
String.prototype.replace() to escape special characters.const escapeRegExp = str => str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');escapeRegExp('(test)'); // \\(test\\)