Home

Awesome

Parse-RE

ECMAScript Regular Expression parser and engine.

About

Parse-RE is an academic implementation of ECMAScript 5.1 regular expressions using parse.js parser combinators. It explores the development of parser combinators that output parser combinators. The parsers map regular expression grammar elements to matchers (more parsers) with the action represented by the regular expression element. These matchers can then be run against strings to produce matching results.

The implementation is in functional style Javascript.

Dependencies