|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | # escape-string-regexp [](https://travis-ci.org/sindresorhus/escape-string-regexp)
|
|---|
| 2 |
|
|---|
| 3 | > Escape RegExp special characters
|
|---|
| 4 |
|
|---|
| 5 | ## Install
|
|---|
| 6 |
|
|---|
| 7 | ```
|
|---|
| 8 | $ npm install escape-string-regexp
|
|---|
| 9 | ```
|
|---|
| 10 |
|
|---|
| 11 | ## Usage
|
|---|
| 12 |
|
|---|
| 13 | ```js
|
|---|
| 14 | const escapeStringRegexp = require('escape-string-regexp');
|
|---|
| 15 |
|
|---|
| 16 | const escapedString = escapeStringRegexp('How much $ for a 🦄?');
|
|---|
| 17 | //=> 'How much \\$ for a 🦄\\?'
|
|---|
| 18 |
|
|---|
| 19 | new RegExp(escapedString);
|
|---|
| 20 | ```
|
|---|
| 21 |
|
|---|
| 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.
|
|---|
| 23 |
|
|---|
| 24 | ---
|
|---|
| 25 |
|
|---|
| 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.