web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
666 B

  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. > Escape RegExp special characters
  3. ## Install
  4. ```
  5. $ npm install escape-string-regexp
  6. ```
  7. ## Usage
  8. ```js
  9. const escapeStringRegexp = require('escape-string-regexp');
  10. const escapedString = escapeStringRegexp('How much $ for a 🦄?');
  11. //=> 'How much \\$ for a 🦄\\?'
  12. new RegExp(escapedString);
  13. ```
  14. You can also use this to escape a string that is inserted into the middle of a regex, for example, into a character class.
  15. ## License
  16. MIT © [Sindre Sorhus](https://sindresorhus.com)