$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] How to compile boost regex
From: Steven Watanabe (watanabesj_at_[hidden])
Date: 2009-09-15 11:27:58
AMDG
manish4gupta wrote:
> I am compiling the program using the following option g++ -ggdb -lboost_regex
> -o regex regex.cpp but it is giving error.
>
> <snip>
> for(j = 0; j < what.captures(i).size(); ++j)
>
> <snip>
>
> Error message:
> regex.cpp: In function âvoid print_captures(const std::string&, const
> std::string&)â:
> regex.cpp:20: error: âclass boost::smatchâ has no member named âcapturesâ
> regex.cpp:26: error: âclass boost::smatchâ has no member named âcapturesâ
>
> How can i avoid that. Please help me.
>
>
There is no function called captures. Use the subscript operator.
what[i].size()
In Christ,
Steven Watanabe