25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

27 satır
552 B

4 yıl önce
  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)