JSPM

regexp-from-string

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q30582F
  • License MIT

Creates RegExp from a string, e.g. `/string/gi` and provides some utils to work with RegExp as strings, for example, to extract multi RegExps defined within a same string, e.g. `/Rock/, /and/, /roll/i`.

Package Exports

  • regexp-from-string

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (regexp-from-string) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

RegExpFromString

Build Status

Creates RegExp from a string, e.g. '/string/gi' and provides some utils to work with RegExp as strings, for example, to extract multi RegExps defined within a same string, e.g. '/Rock/, /and/, /roll/i'.

Out of the box support for Node.js and Browsers

Installation

npm install regexp-from-string

To use it on a Browser, without a build system, just include the file lib/regexp-from-string.js

Usage

Creating a RegExp

RegExpFromString();

const RegExpFromString = require('regexp-from-string');

const regExp = RegExpFromString(`/Rock/ig`);
// `regExp` is the same as RegExp(/Rock/ig);

Finding many RegExps at a String

RegExpFromString.findAll();

const RegExpFromString = require('regexp-from-string');

const regExps = RegExpFromString.findAll(`/Rock/ /and|n/i /Roll$/g`);
// `regExps` will be the array [/Rock/, /and|n/i, /Roll$/g]
// Each value is a RegExp Object

// See how a specific delimiter is not needed
// So you can use anything that fits better for your case
// Any of the following will produces the same result as the example above
RegExpFromString.findAll(`/Rock/,/and|n/i,/Roll$/g`);
RegExpFromString.findAll(`/Rock/;/and|n/i;/Roll$/g`);
RegExpFromString.findAll(`/Rock/#$!$%/and|n/i  #&*E*& O#)/Roll$/g`);

Get all the matches for the many RegExps found at a String

RegExpFromString.matchAll();

// It behaves like findAll, but in this case
// it will return an Array with all the RegExp `match` instead of the RegExp itself
const RegExpFromString = require('regexp-from-string');

const regExps = RegExpFromString.matchAll(`/Rock/ /and|n/i /Roll$/g`);
// regExps will be:
[
    ['/Rock/i',
        'Rock',
        'i',
        index: 0,
        input: '/Rock/i,/and|n/i,/Roll$/g'
    ],
    ['/and|n/i',
        'and|n',
        'i',
        index: 8,
        input: '/Rock/i,/and|n/i,/Roll$/g'
    ],
    ['/Roll$/g',
        'Roll$',
        'g',
        index: 17,
        input: '/Rock/i,/and|n/i,/Roll$/g'
    ]
]