main
Last change
on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago |
Pred finalna verzija
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[d565449] | 1 | # escape-string-regexp [![Build Status](https://travis-ci.org/sindresorhus/escape-string-regexp.svg?branch=master)](https://travis-ci.org/sindresorhus/escape-string-regexp)
|
---|
| 2 |
|
---|
| 3 | > Escape RegExp special characters
|
---|
| 4 |
|
---|
| 5 | ## Install
|
---|
| 6 |
|
---|
| 7 | ```
|
---|
[0c6b92a] | 8 | $ npm install escape-string-regexp
|
---|
[d565449] | 9 | ```
|
---|
| 10 |
|
---|
| 11 | ## Usage
|
---|
| 12 |
|
---|
| 13 | ```js
|
---|
| 14 | const escapeStringRegexp = require('escape-string-regexp');
|
---|
| 15 |
|
---|
[0c6b92a] | 16 | const escapedString = escapeStringRegexp('How much $ for a 🦄?');
|
---|
| 17 | //=> 'How much \\$ for a 🦄\\?'
|
---|
[d565449] | 18 |
|
---|
| 19 | new RegExp(escapedString);
|
---|
| 20 | ```
|
---|
| 21 |
|
---|
[0c6b92a] | 22 | You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
|
---|
[d565449] | 23 |
|
---|
[0c6b92a] | 24 | ---
|
---|
[d565449] | 25 |
|
---|
[0c6b92a] | 26 | <div align="center">
|
---|
| 27 | <b>
|
---|
| 28 | <a href="https://tidelift.com/subscription/pkg/npm-escape-string-regexp?utm_source=npm-escape-string-regexp&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
---|
| 29 | </b>
|
---|
| 30 | <br>
|
---|
| 31 | <sub>
|
---|
| 32 | Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
---|
| 33 | </sub>
|
---|
| 34 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.