其他分享
首页 > 其他分享> > c – 基于提升精神语法的字符串拆分

c – 基于提升精神语法的字符串拆分

作者:互联网

我正在使用Boost 1.44,Spirit解析器适用于数值解析,但对于字符串解析来说真的很棘手.我试图解析一个字符串,使用多个分隔符进行拆分:’,’,’;’要么 ‘ ‘.当我这样做时,它适用于数字(其中vect = vector< double>):

qi::parse(first,last,double_ >> *(',' >> double_  | ' ' >> double_ | ';' >> double_),

VECT,空间);

但是,当我使用vect = vector<修改字符串的语法时字符串>,

+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_,它被视为一系列字符而不是字符串.有什么方法可以解决这个问题吗?

谢谢

解决方法:

使用更新版本的Spirit,字符串处理(您的方式)变得更加容易.我建议使用Spirit from Boost V1.47,它重新修改了属性处理代码.

但即使它以你想要的方式编译,它也不会按照你期望的方式解析.精神本身就是贪婪的,这意味着char_将无条件地消耗你输入中留下的任何东西.这似乎更好

+~char_(", ;") % char_(", ;")

即一个或多个()字符在集合中没有(〜),“;”正好穿插其中一个角色.列表解析器(%)公开向量< A>,其中A是左手表达式的属性,向量< string>在上面的情况.

标签:boost-spirit-qi,c,boost,boost-spirit
来源: https://codeday.me/bug/20190729/1576637.html