chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Chicken-users] irregex merged


From: felix winkelmann
Subject: [Chicken-users] irregex merged
Date: Wed, 31 Dec 2008 12:18:58 +0100

Hello!


I have merged the "irregular" branch into trunk, so PCRE has now been
replaced with Alex' "irregex" regular expression package. That means,
SREs are now supported.

I noticed that regex-compilation into internal representation is relatively
slow, so precompiling the regexes is quite important in those cases, i.e.

(define (foo ...)
  ... (string-match "regex" ...) ...)

should be replaced with

(define foo
  (let ((rx (regexp "regex")))
    (lambda ...




reply via email to

[Prev in Thread] Current Thread [Next in Thread]