Top "Boost-regex" questions

Boost.

C++ Regular Expressions with Boost Regex

I am trying to take a string in C++ and find all IP addresses contained inside, and put them into …

c++ regex boost boost-regex
linking to boost regex in gcc

i am trying to compile my program which uses regex on linux. I built the boost library in the libs/…

c++ regex boost linker boost-regex
Put first boost::regex match into a string

Somehow, I've failed to find out, how to put only the first occurrence or regular expression to string. I can …

c++ stdstring boost-regex
how to use Boost regular expression replace method?

I have these variables: boost::regex re //regular expression to use std::string stringToChange //replace this string std::string newValue //…

c++ boost boost-regex
Cannot link Boost regex

I am currently trying to compile a Contraction Hierachies implementation by KIT which requires Boost::Regex. The supplied Makefile already …

gcc boost linker linker-errors boost-regex
fatal error LNK1104: cannot open file 'libboost_regex-vc90-mt-gd-1_42.lib'

i'm trying to use boost regex within my program the problem is i get this error... the only installation step …

c++ boost-regex
How can I use Boost::regex.hpp library in C++?

I tried to use Boost library but I failed, see my code: #include "listy.h" #include <boost/regex.hpp&…

c++ regex boost boost-regex
Undefined reference when Gcc compiling Boost::regex with multiple versions of boost exist

I was trying to install Boost on a linux machine(CentOs, Linux version 2.6.9-67.ELsmp). I followed with the instruction …

c++ linux gcc boost boost-regex
Extract IP address from a string using boost regex?

I was wondering if anyone can help me, I've been looking around for regex examples but I still can't get …

c++ boost-regex
Getting sub-match_results with boost::regex

Hey, let's say I have this regex: (test[0-9])+ And that I match it against: test1test2test3test0 const …

c++ regex boost boost-regex