Socket
Socket
Sign inDemoInstall

escape-string-regexp

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    escape-string-regexp

Escape RegExp special characters


Version published
Weekly downloads
106M
decreased by-18.62%
Maintainers
1
Install size
4.70 kB
Created
Weekly downloads
 

Package description

What is escape-string-regexp?

The escape-string-regexp package is used to escape any characters that have special meaning in regular expressions. It takes a string and escapes characters that could be interpreted in a regex pattern, allowing the string to be used within a regex without triggering its special behavior.

What are escape-string-regexp's main functionalities?

Escaping special characters in strings for use in regular expressions

This feature is useful when you want to create a regular expression that includes literal strings that may contain characters that would normally be interpreted as special regex tokens. By escaping these characters, they are treated as literals in the regex pattern.

const escapeStringRegexp = require('escape-string-regexp');
const escapedString = escapeStringRegexp('Hello. How are you?');
// escapedString would be 'Hello\. How are you\?'

Other packages similar to escape-string-regexp

Readme

Source

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 companies
assurances about security, maintenance, and licensing for their dependencies.

Keywords

FAQs

Last updated on 17 Apr 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc