Thread overview
regex
Mar 29, 2003
Matthew Wilson
Mar 29, 2003
Burton Radons
Mar 29, 2003
Matthew Wilson
Apr 11, 2003
Manfred Hansen
Apr 11, 2003
Ilya Minkov
Apr 11, 2003
Mark Evans
Apr 11, 2003
Matthew Wilson
March 29, 2003
Has any done, or is doing, a regex for D?

I'm a bit of a dunce with regex; should we just import a regex C library? If so, does anyone know of any?

Thanks

Matthew


March 29, 2003
Matthew Wilson wrote:
> Has any done, or is doing, a regex for D?
> 
> I'm a bit of a dunce with regex; should we just import a regex C library? If
> so, does anyone know of any?

Uh, use the "regexp" module in Phobos.

March 29, 2003
LOL! Good on ya, Matty. Doh!

Thanks Burton

"Burton Radons" <loth@users.sourceforge.net> wrote in message news:b6569s$c2m$1@digitaldaemon.com...
> Matthew Wilson wrote:
> > Has any done, or is doing, a regex for D?
> >
> > I'm a bit of a dunce with regex; should we just import a regex C
library? If
> > so, does anyone know of any?
>
> Uh, use the "regexp" module in Phobos.
>


April 11, 2003
Hello,

have someone a little example for regex?

Regards,
Manfred


Burton Radons wrote:

> Matthew Wilson wrote:
>> Has any done, or is doing, a regex for D?
>> 
>> I'm a bit of a dunce with regex; should we just import a regex C library? If so, does anyone know of any?
> 
> Uh, use the "regexp" module in Phobos.

April 11, 2003
A propos regexp: i somehow think that a simple embedded parser library is better for most of the same tasks.

A library modelled after this one could be useful:
http://spirit.sourceforge.net/index.php?doc=docs/v1_6/index.html

As i said once, i was intending to do one.

-i.

Matthew Wilson wrote:
> Has any done, or is doing, a regex for D?
> 
> I'm a bit of a dunce with regex; should we just import a regex C library? If
> so, does anyone know of any?
> 
> Thanks
> 
> Matthew
> 
> 

April 11, 2003
Matthew Wilson asked
>I'm a bit of a dunce with regex; should we just import a regex C library? If so, does anyone know of any?

I like PCRE.  Very mature, ANSI C, cross-platform, loose license.  Perl compatible for those who care.

http://www.pcre.org/

Mark


April 11, 2003
Excellent!

I think should help a lot in a bit of research that I'll be doing in a few months' time. C-compat as well. Very nice. :)

"Mark Evans" <Mark_member@pathlink.com> wrote in message news:b77fk2$1v06$1@digitaldaemon.com...
> Matthew Wilson asked
> >I'm a bit of a dunce with regex; should we just import a regex C library?
If
> >so, does anyone know of any?
>
> I like PCRE.  Very mature, ANSI C, cross-platform, loose license.  Perl compatible for those who care.
>
> http://www.pcre.org/
>
> Mark
>
>