I'm working on a commercial (not open source) C++ project that runs on a linux-based system. I need to do some regex within the C++ code. (I know: I now have 2 problems.)

QUESTION: What libraries do people who regularly do regex from C/C++ recommend I look into? A quick search has brought the following to my attention:

1) Boost.Regex (I need to go read the Boost Software License, but this question is not about software licenses)

2) C (not C++) POSIX regex (#include <regex.h>, regcomp, regexec, etc.)

3) http://freshmeat.net/projects/cpp_regex/ (I know nothing about this one; seems to be GPL, therefore not usable on this project)

Thanks.

link|improve this question

6  
In case anyone is looking at this old question for hints...a new library has shown up recently that deserves to be mentioned: Google's RE2: code.google.com/p/re2 – Stéphane May 25 '10 at 16:55
feedback

10 Answers

Boost.Regex is very good and is slated to become part of the C++0x standard (it's already in TR1).

Personally, I find Boost.Xpressive much nicer to work with. It is a header-only library and it has some nice features such as static regexes (regexes compiled at compile time).

link|improve this answer
A project I was personally involved with had to switch from Boost.Regex to PCRE because of binary compatibility issues (Boost's non-header-only libraries tend to suffer from inexplicable ABI breakage with minor releases and/or compiler option changes). However, if it's been absorbed into the C++ standard library that should cease to be a problem. – Zack Jan 9 '11 at 18:35
feedback

In C++ projects past, I have used PCRE with good success. It's very complete and well-tested since it's used in many high profile projects. And I see that Google has contributed a set of C++ wrappers for PCRE recently, too.

link|improve this answer
feedback

Boost has regex in it.

That should fill the bill

link|improve this answer
feedback
up vote 9 down vote accepted

Thanks for all the suggestions.

I tried out a few things today, and with the stuff we're trying to do, I opted for the simplest solution where I don't have to download any other 3rd-party library. In the end, I #include <regex.h> and used the standard C POSIX calls regcomp() and regexec(). Not C++, but in a pinch this proved to be the easiest.

link|improve this answer
feedback

C++ has a builtin regex library since TR1. AFAIK Boost's regex library is very compatible with it and can be used as a replacement, if your standard library doesn't provide TR1.

link|improve this answer
What compiler has TR1? My copy of g++ 4.1.2 (Debian Etch) does not have support for #include <regex> but thanks for bringing TR1 to my attention, I had forgotten. For others curious to know more on TR1 and C++0x, see en.wikipedia.org/wiki/Technical_Report_1 – Stéphane Oct 8 '08 at 7:36
As of SP1 Visual Studio 2008 has most of TR1, including regex. I know it doesn't help you on Linux, but others may be interested. Dinkumware also supports TR1 on gcc. – Michael Burr Oct 8 '08 at 8:18
As I wrote, if your std library doesn't have regex, then you can use boost: boost.org/doc/libs/1_36_0/doc/html/boost_tr1/… – Kasprzol Oct 8 '08 at 8:27
1  
g++ 4.5.0. TR1 lives in tr1/regex. e.g.: #include <tr1/regex> – Ogre Psalm33 Feb 7 '11 at 22:24
feedback

I've personally always used boost.regex (although I don't have much need for regex in C++). Microsoft Labs has a regex library too, called GRETA: http://research.microsoft.com/projects/greta/. Apparently it's very fast and features a whole Perl 5 syntax. I haven't used it, but you may want to test it out.

link|improve this answer
5  
GRETA (research.microsoft.com/en-us/downloads/…) was made by Eric Niebler when he worked at Microsoft (1998-2001 from GRETA's header files). Eric Niebler then made in 2007 Boost.Xpressive. People should use Boost.Xpressive because it's newer and has a nicer license than "Microsoft Research end user license agreement" – Cristian Adam Sep 8 '09 at 15:14
feedback

You can also look at fast regex library that was developed at Yandex search engine for doing fast matches of thousands of patterns against huge amounts of data.

link|improve this answer
feedback

I faced a similar situation and ended up using Henry Spencers Regexp Engine http://www.codeproject.com/KB/string/spencerregexp.aspx

link|improve this answer
feedback

Noone here said anything about the one that comes with C++0x. If you are using a compiler and the STL that supports C++0x you could just use that instead of having another lib in your project.

link|improve this answer
1  
If you look at the highest-voted answer (from 2+ years ago), it mentions this. – muntoo Apr 28 '11 at 2:37
feedback

Two more options:

If you can write it in c++11 - Do the tutorial: http://www.codeguru.com/cpp/cpp/cpp_mfc/stl/article.php/c15339


Or you can use ragel to generate a finite state machine to do the parsing for you, and generate the C/C++ code implementation: http://www.complang.org/ragel/

I used it a little to generate code to pares json. This ragel file: https://github.com/matiu2/yajp/blob/master/number.rl generates this code https://github.com/matiu2/yajp/blob/master/number.hpp and this finite state machine diagram:

state diagram

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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