使用boost spirit解析int或double(longest_d)

时间:2012-11-07 00:21:02

标签: c++ boost boost-spirit boost-spirit-qi

我正在寻找一种将字符串解析为int或double的方法,解析器应该尝试两种方法并选择与输入流的最长部分匹配的方法。

有一个弃用的指令(longest_d)正是我正在寻找的:

number = longest_d[ integer | real ];

...因为它已被弃用,还有其他选择吗?如果有必要实现语义动作来实现所需的行为,是否有人有建议?

1 个答案:

答案 0 :(得分:14)

首先,切换到Spirit V2 - 它已经取代了经典精神多年了。

其次,您需要确保首选int。默认情况下,double可以同样好地解析任何整数,因此您需要使用strict_real_policies代替:

real_parser<double, strict_real_policies<double>> strict_double;

现在你可以简单地陈述

number = strict_double | int_;

请参阅测试计划 Live on Coliru

#include <boost/spirit/include/qi.hpp>

using namespace boost::spirit::qi;

using A  = boost::variant<int, double>;
static real_parser<double, strict_real_policies<double>> const strict_double;

A parse(std::string const& s)
{
    typedef std::string::const_iterator It;
    It f(begin(s)), l(end(s));
    static rule<It, A()> const p = strict_double | int_;

    A a;
    assert(parse(f,l,p,a));

    return a;
}

int main()
{
    assert(0 == parse("42").which());
    assert(0 == parse("-42").which());
    assert(0 == parse("+42").which());

    assert(1 == parse("42.").which());
    assert(1 == parse("0.").which());
    assert(1 == parse(".0").which());
    assert(1 == parse("0.0").which());
    assert(1 == parse("1e1").which());
    assert(1 == parse("1e+1").which());
    assert(1 == parse("1e-1").which());
    assert(1 == parse("-1e1").which());
    assert(1 == parse("-1e+1").which());
    assert(1 == parse("-1e-1").which());
}