Re: YA regular expression tool

2013-08-26 Thread Paulo Suzart
This will save my time a lot. No more rubular.com :) great On 1 August 2013 21:33, Joel Holdbrooks wrote: > Thanks. This tool was really more or less for fun but I'd been thinking > about it for a while. According to some benchmarks it appears the generated > patterns are pretty fast. When I g

Re: YA regular expression tool

2013-08-01 Thread Joel Holdbrooks
Thanks. This tool was really more or less for fun but I'd been thinking about it for a while. According to some benchmarks it appears the generated patterns are pretty fast. When I get some more time, I definitely want to see if converting the word trie to a DAWG and then to a regular expression

Re: YA regular expression tool

2013-07-30 Thread Mikera
On Monday, 29 July 2013 21:20:49 UTC+1, Joel Holdbrooks wrote: > > I spent some time this weekend writing a little tool for generating > regular expressions *from known inputs*. My goal is to produce regular > expressions that backtrack as few times as possible along with a complete > and total

YA regular expression tool

2013-07-29 Thread Joel Holdbrooks
I spent some time this weekend writing a little tool for generating regular expressions *from known inputs*. My goal is to produce regular expressions that backtrack as few times as possible along with a complete and total disregard for readability. :) The code for the tool is here