Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
11  
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

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).

Update: If you're using a C++11 compliant compiler, use std::regex unless you have good reason to use something else.

share|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
Boost is full of bugs and appears to lack a coding standards and QA process. Its not really suitable for production software. That includes its Regex gear, which uses C (rather than C++) in places and includes buffer overflows due to unsafe functions such as sprintf. When I reported a bunch of bugs after an audit, they remained "unacknowledged" months after the report. Use at your own risk. – noloader Oct 25 '12 at 5:37
1  
std::regex isn't available in libstdc++ yet so I fall back to posix regex. – Matt Clarkson Feb 4 at 13:29
1  
Almost 5 years later, I tried today to use std::regex, but it turns out it hasn't yet been implemented in GCC. See stackoverflow.com/questions/15671536/… – Stéphane Mar 28 at 0:22

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.

share|improve this answer

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.

share|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
2  
g++ 4.5.0. TR1 lives in tr1/regex. e.g.: #include <tr1/regex> – Ogre Psalm33 Feb 7 '11 at 22:24
1  
"if your std library doesn't have regex, then you can use boost..." - Boost is full of bugs and appears to lack a coding standards and QA process. Its not really suitable for production software. That includes its Regex gear, which uses C (rather than C++) in places and includes buffer overflows due to unsafe functions such as sprintf. When I reported a bunch of bugs after an audit, they remained "unacknowledged" months after the report. Use at your own risk. – noloader Oct 25 '12 at 5:36
up vote 11 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.

share|improve this answer

Boost has regex in it.

That should fill the bill

share|improve this answer
1  
Boost is full of bugs and appears to lack a coding standards and QA process. Its not really suitable for production software. That includes its Regex gear, which uses C (rather than C++) in places and includes buffer overflows due to unsafe functions such as sprintf. When I reported a bunch of bugs after an audit, they remained "unacknowledged" months after the report. Use at your own risk. – noloader Oct 25 '12 at 5:36
Also appears to be slower than Googles Re2 lh3lh3.users.sourceforge.net/reb.shtml – Chad Oct 25 '12 at 14:21
@noloader Thanks for mentioning in three different places on this post that "Boost is full of bugs and appears to lack a coding standards" – Brandin Jan 25 at 11:56
@Brandin. No problem. The Fan Boi's tend to overlook and drown out all the problems the library has. Its nearly as bad as the Apple Fan Boi's. – noloader Jan 25 at 16:13

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/parser/number.rl is used to generate this code https://github.com/matiu2/yajp/blob/master/parser/json.hpp#L254 and this finite state machine diagram:

state diagram

share|improve this answer

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.

share|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
Sorry, I dont see how pulling in the Boost library is a good thing. The last time I checked the local download uncompressed version of boost is 400 megs. Not to mention the inain template madness you get with boost. Sorry, I recommend Gregs answer. – Chad Oct 25 '12 at 11:54

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.

share|improve this answer

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

share|improve this answer

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.

share|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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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