From: Mikalai
Subject: How to do regular expressions in SBCL?
Date: 
Message-ID: <1143675006.443830.281570@i39g2000cwa.googlegroups.com>
Hi all,

SBCL does not seem to include a regular expression pack (manual says
nothing; no pack is named close to regexp), am I right? If so, what
regular expressions package do you think is better for SBCL, and where
is it possible get a copy?

Thanks in advance.

From: Zach Beane
Subject: Re: How to do regular expressions in SBCL?
Date: 
Message-ID: <m3u09glt1s.fsf@unnamed.xach.com>
"Mikalai" <········@yahoo.com> writes:

> Hi all,
> 
> SBCL does not seem to include a regular expression pack (manual says
> nothing; no pack is named close to regexp), am I right? If so, what
> regular expressions package do you think is better for SBCL, and where
> is it possible get a copy?

CL-PPCRE is the thing to use. http://weitz.de/cl-ppcre/

Zach
From: Mikalai
Subject: Re: How to do regular expressions in SBCL?
Date: 
Message-ID: <1143729142.235874.177060@i40g2000cwc.googlegroups.com>
Zach Beane wrote:
> "Mikalai" <········@yahoo.com> writes:
>
> > Hi all,
> >
> > SBCL does not seem to include a regular expression pack (manual says
> > nothing; no pack is named close to regexp), am I right? If so, what
> > regular expressions package do you think is better for SBCL, and where
> > is it possible get a copy?
>
> CL-PPCRE is the thing to use. http://weitz.de/cl-ppcre/
> 
> Zach
Thanks