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
regex
The 'regex' package provides similar functionalities for handling regular expressions in JavaScript. It offers more comprehensive features for building, testing, and modifying regular expressions compared to regex-parser, which primarily focuses on parsing.
safe-regex
The 'safe-regex' package is designed to check if a regular expression is safe and not susceptible to ReDoS (Regular Expression Denial of Service) attacks. While it does not provide direct parsing capabilities like regex-parser, it complements its functionality by ensuring the safety of regex patterns.
regex-parser
A module that parses a string as regular expression and returns the parsed value.
:cloud: Installation
npm install --save regex-parser
yarn add regex-parser
:clipboard: Example
var RegexParser = require("regex-parser");
console.log(RegexParser("/^hi$/g"));
:question: Get Help
There are few ways to get help:
- Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
- For bug reports and feature requests, open issues. :bug:
- For direct and quick help, you can use Codementor. :rocket:
:memo: Documentation
RegexParser(input)
Parses a string input.
Params
- String
input
: The string input that should be parsed as regular expression.
Return
- RegExp The parsed regular expression.
:yum: How to contribute
Have an idea? Found a bug? See how to contribute.
:sparkling_heart: Support my projects
I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,
this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
-
Starring and sharing the projects you like :rocket:
-
—I love books! I will remember you after years if you buy me one. :grin: :book:
-
—You can make one-time donations via PayPal. I'll probably buy a coffee tea. :tea:
-
—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
-
Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6
Thanks! :heart:
:dizzy: Where is this library used?
If you are using this library in one of your projects, add it in this list. :sparkles:
adjust-sourcemap-loader
twing
cdk-iam-floyd
@sitecore-jss/sitecore-jss-nextjs
@sls-next/s3-static-assets
@fab/cli
@dev-spendesk/fab-cli
@dev-spendesk/cli
surgeon
leadconduit-custom
panko
rendition
iam-floyd
@x1.co/s3-static-assets
gene-js
statique
bible.js
@getjerry/s3-static-assets
automation_model
cp-hyper-react-package-ui-test-2
sklif-ui
thrive-s3-static-assets
@ofabel/twing
@serverless-stack/nextjs-core
reactofy-css-library
@bpinternal/log4bot
@xins/devtool
@dolsze/s3-static-assets
@drafted/s3-static-assets
starts-with-emoji
skyflow-js
@release-drafter/core
polywrap
@cbrzn/polywrap-cli
jaidbot
@digitalrakesh/jsui
react-ang-notifications-honey-comb-setup
neboa
medipass-release-drafter
@algolia/cli
@vasosolo/multiselectcombobox
@noelelias/twing
@alleyway/add-tradingview-alerts-tool
@namestys/polywrap
clean-split
@web3api/cli
@cbrazn/polywrap
style-guide-main
mavectra
@exdst/sitecore-jss-nextjs
resin-components
tweeter-client
release-drafter-github-app
@everything-registry/sub-chunk-2643
@sls-next-n5/s3-static-assets
@knooks/use-title
@juanaraneta/dept-central-lib-client
chatpickle
custome-package-amin
@cbrzn/polywrap
generator-regextxt
redis-expiry
tropwer
zbee-sdk
palantir
forward-email
nka-gantt-task-react
my-library-button
julien-easy-modal
bible
@mayuriachewad/pickupbiz-npm-package
@leiyulf/gantt-task-react
fast-trie-search
draper
microend-component
react-solid-gradient-picker
panko-cli
react-lightbox-pack-18support
next-deploy
now-dammit
grunt-replacex
pickupbiz-npm-package
@tonysusi/vapid
@sava-info-systems/api-maker
@dev-blinq/ai-qa-logic
@benyap/backfire
@wizmea/twing
@openpolitica/matomo-next
@planes/s3-static-assets
labeler-ui
express-file-api
in-solidarity-bot
responsis-gantt-task-react
toolbox-backend-es
virtual-tour-guide
evolas-backend
:scroll: License
MIT © Ionică Bizău