vote up 4 vote down star
1

Hello,

I am searching a pure Delphi library with good full-Perl syntax support.

It should:

  • match groups (both named and numbered)
  • be able to match, replace, split
  • support look-ahead and look behind
  • come with source
  • be free
  • support Unicode
  • be compatible with Delphi 2009

Which library you prefer?

flag

3 Answers

vote up 13 vote down check

Jan Goyvaerts is the guy for Delphi regular expressions.

http://www.regular-expressions.info/delphi.html

He has a nice set of classes based on the PCRE libraries that can be compiled into your Delphi applications.

He's the author of RegexBuddy, a popular application built with Delphi.

http://www.regexbuddy.com/delphi.html

link|flag
1  
Nick, is this the one that will be added to D2010? – Gad D Lord Aug 16 at 21:18
There won't be a Regular Expressions Library in D2010, sadly. Probably next time around. – Nick Hodges Aug 16 at 22:33
TPerlRegEx meets all of Gad's requirements, except that it's not pure Delphi. It's a wrapper around PCRE, which is written in C. – Jan Goyvaerts Aug 17 at 13:04
vote up 2 vote down

DIRegEx has worked very well for me, and it doesn't require any external DLLs. However, the source code isn't free, so it may not meet your needs.

link|flag
vote up 0 vote down

Here is a short list and discussion on the Delphi About.com site. I've heard good things about TPerRegEx, but haven't used it. The only drawback with it (for me) is the external dll.

link|flag
1  
Bruce -- you can link in the OBJ files and end up with no external DLL. It's very nice. – Nick Hodges Aug 16 at 6:41
That is nice. I try to avoid deploying extra DLLs if I can help it. – Bruce McGee Aug 16 at 12:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.