vote up 6 vote down star
2

Does it? If yes, where can I get the documentation for it... if not, then which would be the best alternative?

flag

Near-duplicates: stackoverflow.com/questions/181624, stackoverflow.com/questions/923500 and stackoverflow.com/questions/815429. – Peter Mortensen Sep 14 at 10:31
1  
stackoverflow.com/questions/329517/… – dmckee Sep 14 at 21:15
1  
BTW: you could have had a wealth of information faster and easier by searching: stackoverflow.com/search?q=c+c%2B%2B+regex+standa… – dmckee Sep 14 at 21:17

8 Answers

vote up 17 vote down check

C++ does not have a standard regex library.

Your best alternative would probably be boost regex - a lot of the boost library has made it into the standards discussions for C++0x so it's probably the closest to "standard" that you will get.

Edit: As others have pointed out, Boost::Regex is actually one of the boost libraries slated to go into C++0X, so if all goes according to plan it should actually become the "c++ standard regex library".

link|flag
vote up 4 vote down

Check the boost regex library. It should become part of the standard with C++0x.

link|flag
vote up 5 vote down

Under UNIX-like systems you can use POSIX regex functions.

link|flag
vote up 3 vote down

If by standard you mean bundled with compiler, then not. But most of the other languages that bundle regex extension use pretty standard c implementations. E.g. PCRE - Perl Compatible Regular Expression and C libraries have POSIX regex support (see man page).

link|flag
vote up 5 vote down

The Microsoft Visual C++ 2008 Feature Pack 1 (now rolled into the Visual Studio 2008 Service Pack 1) contains a implementation of the 'official' TR1 reg ex types. Knock yourself out :-)

link|flag
vote up -1 vote down

+1 for PCRE - Perl Compatible Regular Expression , I remembered using Mircosoft's GRETA as well.

link|flag
vote up 1 vote down

Regular Expressions are part of the C++ extension TR1. Dinkumware, visual studio and others already have implemented this. See

Quick Start for C++ TR1 Regular Expressions

Visual C++ 2008 Feature Pack

link|flag
vote up 0 vote down

Qt, from Trolltech, also has a regex implementation which I find very easy to use. However, if you are not planning of using Qt for anything else I would use Boost.Regex as you probably would be good off using Boost for other purposes as well.

link|flag

Your Answer

Get an OpenID
or

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