2.0.0 • Published 5 years ago

@areknawo/rex v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

ReX.js

Your RegEx companion.

GitHub Travis (.org) Coveralls github Gitter npm bundle size (minified + gzip) code style: prettier Twitter URL

The JS Library for writting complex RegExps with help of autocompletion!

import { Matcher } from '@areknawo/rex'

// Trivia example of usage
const expr = new Matcher()
.find('Reg')
.whitespace()
.capture((expr) => {
  expr.find('Exp')
}).test('Reg Exp'); //true

More information can be found on https://areknawo.github.io/Rex.