Socket
Socket
Sign inDemoInstall

regex-parser

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regex-parser

A module that parses a string as regular expression and returns the parsed value.


Version published
Weekly downloads
4.6M
decreased by-34.12%
Maintainers
1
Weekly downloads
 
Created

What is regex-parser?

The regex-parser npm package is a utility for parsing regular expressions from strings in JavaScript. It allows developers to dynamically create regular expression objects from string inputs, which can be useful in scenarios where regular expressions need to be constructed at runtime based on user input or other dynamic data sources.

What are regex-parser's main functionalities?

Parsing regular expressions from strings

This feature allows the parsing of regular expressions from string format into RegExp objects. The example demonstrates creating a RegExp object for a case-insensitive match of the word 'hello' and testing it against a sample string.

const regexParser = require('regex-parser');

// Parse a regular expression from a string
const regex = regexParser('/hello/i');

// Use the parsed regex to test strings
console.log(regex.test('Hello world')); // true

Other packages similar to regex-parser

Keywords

FAQs

Package last updated on 20 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc