satyr / retrie

Tiny library to make optimized regexes for a specific set of texts

Home Page:http://satyr.github.com/retrie/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Retrie

JS port of @dankogai's RegexpTrie, written in Coco.

usage

RegExp('^' + Retrie(['a', 'ab', 'ac', 'd']))  //=> /^(?:a[bc]?|d)/
RegExp('^' + Retrie(['abcd'], true))          //=> /^a(?:b(?:cd?)?)?/

About

Tiny library to make optimized regexes for a specific set of texts

http://satyr.github.com/retrie/

License:Other


Languages

Language:JavaScript 100.0%