Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

readme.md 1.0KB

12345678910111213141516171819202122232425262728293031323334
  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. ---
  16. <div align="center">
  17. <b>
  18. <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>
  19. </b>
  20. <br>
  21. <sub>
  22. Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
  23. </sub>
  24. </div>