Boost 1.44 を使用しています。Spirit パーサーは数値の解析には適していますが、文字列の解析には注意が必要です。複数の区切り文字 ',' ,';' を使用して分割する文字列を解析しようとしています。また ' '。これを行うと、数値に対してうまく機能します(vect = vector < double >):
qi::parse(first,last,double_ >> *(',' >> double_ | ' ' >> double_ | ';' >> double_),
ベクトル、スペース);
ただし、vect = vector< string > を使用して文字列の文法を変更すると、
+char_ >> *(',' >> +char_ | ' ' >> +char_ | ';' >> +char_)
次のエラーが表示されます。
/usr/include/boost/spirit/home/qi/detail/assign_to.hpp:109:13: error: invalid conversion from ‘char’ to ‘const char*’/usr/include/boost/spirit/home/qi/detail/assign_to.hpp:109:13: error: initializing argument 1 of ‘std::basic_string<_CharT, _Traits,_Alloc>::basic_string(const _CharT*, const _Alloc&) [with _CharT = char, _Traits = std::char_traits<char>, _Alloc = std::allocator<char>]’
エラーを、文字列ではなく一連の文字として解釈される文法構文の最初の +char_ に絞り込みました。この問題を解決する方法はありますか?
ありがとう