Discussion:
alternative fro boost::regex
(too old to reply)
Lars Schouw
2010-03-16 08:19:47 UTC
Permalink
What is a good alternative to boost regular expressions?
I want to use regular expressions, but don't want to link in boost.

Lars
Jeff Flinn
2010-03-16 11:44:32 UTC
Permalink
Post by Lars Schouw
What is a good alternative to boost regular expressions?
I want to use regular expressions, but don't want to link in boost.
Lars
How about boost.xpressive it's header only. ;-)

Jeff
Alex Blekhman
2010-03-16 13:20:18 UTC
Permalink
Post by Lars Schouw
What is a good alternative to boost regular expressions?
I want to use regular expressions, but don't want to link in boost.
If you have VC++ 2008, then there is <regex> header file in TR1
extensions library. Standard tr1 regex was designed after boost regular
expressions, so both are pretty similar.

HTH
Alex

Loading...