Re: [Haskell-cafe] JRegex on "large" input sizes

2006-07-01 Thread Chris Kuklewicz
Gregory Woodhouse wrote: On Jul 1, 2006, at 6:27 AM, David House wrote: Hi all. I need a decent regex library and JRegex seems the perfect choice: simple API, yet well-featured, as well as PCRE support. I want to use it on a simple project which involves input files a little larger than typ

Re: [Haskell-cafe] JRegex on "large" input sizes

2006-07-01 Thread Gregory Woodhouse
On Jul 1, 2006, at 6:27 AM, David House wrote:Hi all. I need a decent regex library and JRegex seems the perfect choice: simple API, yet well-featured, as well as PCRE support. I want to use it on a simple project which involves input files a little larger than typical -- between 100KB and 500KB --

Re: [Haskell-cafe] JRegex on "large" input sizes

2006-07-01 Thread David House
On 01/07/06, Chris Kuklewicz <[EMAIL PROTECTED]> wrote: For fancier Regexes (such as using lazy pattern with ?? *? and +?) the Text.Regex.Lazy.Full extends Text.Regex.Lazy.Compat. The non-greedy modifier is really what I need, so I'll check it out. Thanks. -- -David House, [EMAIL PROTECTED] __

Re: [Haskell-cafe] JRegex on "large" input sizes

2006-07-01 Thread Chris Kuklewicz
David House wrote: > Hi all. I need a decent regex library and JRegex seems the perfect > choice: simple API, yet well-featured, as well as PCRE support. I "maintain" Text.Regex.Lazy ( http://sourceforge.net/projects/lazy-regex ) so I would mention it does not have full PCRE support. The module

Re: [Haskell-cafe] JRegex on "large" input sizes

2006-07-01 Thread Donald Bruce Stewart
dmhouse: > Hi all. I need a decent regex library and JRegex seems the perfect > choice: simple API, yet well-featured, as well as PCRE support. I want > to use it on a simple project which involves input files a little > larger than typical -- between 100KB and 500KB -- but still small > enough so

[Haskell-cafe] JRegex on "large" input sizes

2006-07-01 Thread David House
Hi all. I need a decent regex library and JRegex seems the perfect choice: simple API, yet well-featured, as well as PCRE support. I want to use it on a simple project which involves input files a little larger than typical -- between 100KB and 500KB -- but still small enough so as to not present