Popularity
4.4
Growing
Activity
0.0
Stable
569
13
56

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Text     Regex     String     Str     Characters     Escape     Special     Expression     Regular     Re     Regexp    
Latest version: v4.0.0

escape-string-regexp alternatives and similar modules

Based on the "Text" category.
Alternatively, view escape-string-regexp alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of escape-string-regexp or a related project?

Add another 'Text' Module

README

escape-string-regexp

Escape RegExp special characters

Install

$ npm install escape-string-regexp

Usage

import escapeStringRegexp from 'escape-string-regexp';

const escapedString = escapeStringRegexp('How much $ for a ๐Ÿฆ„?');
//=> 'How much \\$ for a ๐Ÿฆ„\\?'

new RegExp(escapedString);

You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.


Get professional support for this package with a Tidelift subscription Tidelift helps make open source sustainable for maintainers while giving companiesassurances about security, maintenance, and licensing for their dependencies.