一致したテキストを変数$1、$ 2の()に入れるPerlの正規表現メモリ機能を使用しようとしています... Boostでこれを行う方法を知っている人はいますか?Boostは一致したテキストを別の場所に保存しますか?次のコード行は、$1が未定義であることを示しています。
boost::regex ex( aaa(b+)aaa, boost::regex::perl );
if(boost::regex_search( line ,ex ))
set_value( $1 ); // Here $1 should contain all the b's matched in the parenthesis
ありがとう、ジョー