您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
552 B

4 年前
  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 --save escape-string-regexp
  6. ```
  7. ## Usage
  8. ```js
  9. const escapeStringRegexp = require('escape-string-regexp');
  10. const escapedString = escapeStringRegexp('how much $ for a unicorn?');
  11. //=> 'how much \$ for a unicorn\?'
  12. new RegExp(escapedString);
  13. ```
  14. ## License
  15. MIT © [Sindre Sorhus](http://sindresorhus.com)