- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道在使用 boost Spirit X3 解析数字时是否可以保留前导零。我目前拥有的是一个将整数解析为我的数据结构的程序(基于员工示例)。但是,在解析过程中我丢失了前导零。这是我的应用领域的一个问题,其中任何整数前面的前导零给出不同的解释。
#include <boost/spirit/home/x3.hpp>
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <boost/fusion/adapted/struct.hpp>
#include <iostream>
namespace client {
namespace ast {
struct number
{
int number;
};
}
}
BOOST_FUSION_ADAPT_STRUCT(client::ast::number, number)
namespace client
{
namespace parser
{
namespace x3 = boost::spirit::x3;
using x3::int_;
x3::rule<class number, ast::number> const number = "number";
auto const number_def = int_;
BOOST_SPIRIT_DEFINE(number)
}
}
int main()
{
using boost::spirit::x3::ascii::space;
using client::parser::number;
std::istringstream iss("1 02 030 00400 0005");
std::vector<client::ast::number> nums;
boost::spirit::istream_iterator iter(iss >> std::noskipws), eof;
bool ok = phrase_parse(iter, eof, *number, space, nums);
if (ok)
{
std::cout << "parsed: " << std::endl;
for (size_t i = 0; i < nums.size(); ++i)
{
std::cout << nums[i].number << "\n";
}
}
}
程序的结果是:
parsed:
1
2
30
400
5
而我需要
parsed:
1
02
030
00400
00005
编辑
我在这方面取得了一些进展:
http://coliru.stacked-crooked.com/a/9f06f02613956230
#include <boost/spirit/home/x3.hpp>
#include <boost/fusion/adapted/struct.hpp>
namespace x3 = boost::spirit::x3;
namespace ast {
struct fullnumber
{
std::string leadingZeros = "";
int number = -1;
};
}
BOOST_FUSION_ADAPT_STRUCT(ast::fullnumber, leadingZeros, number)
x3::rule<class fullnumber, ast::fullnumber> const fullnumber = "fullnumber";
auto const fullnumber_def = x3::lexeme[-(+x3::char_("0") >> &x3::int_) >> +x3::int_];
BOOST_SPIRIT_DEFINE(fullnumber);
int main() {
std::vector<ast::fullnumber> fullnumbers;
std::string parse_numbers_input("0 1 00 01 20 003000 00004 500000");
auto begin = parse_numbers_input.begin();
auto end = parse_numbers_input.end();
bool ok = phrase_parse(begin, end, *fullnumber, x3::space, fullnumbers);
if (ok) {
std::cout << "parsed: " << std::endl;
for (auto n : fullnumbers)
std::cout << "leading: '" << n.leadingZeros << "', num: " << n.number << "\n";
}
}
parsed:
leading: '0', num: 0
leading: '', num: 1
leading: '00', num: 0
leading: '0', num: 1
leading: '', num: 20
leading: '00', num: 3000
leading: '0000', num: 4
leading: '', num: 500000
如您所见,我已经接近我想要的了。诀窍是理解 x3::lexeme 是必需的,因为如果我们不使用它,解析器将始终使用每个元素之间的分隔符。所以 x3::lexeme[-(+x3::char_("0") >> &x3::int_) >> +x3::int_];说:[可选]所有零后跟一个整数(非消耗),后跟一个整数。
我还有一个关于解析器正在做什么的问题:
|----|----------|----------|-----------|----------|
| id | input | leading | number | expected |
|----|----------|----------|-----------|----------|
| 1 | 0 | 0 | 0 | no |
|----|----------|----------|-----------|----------|
| 2 | 1 | | 1 | yes |
|----|----------|----------|-----------|----------|
| 3 | 00 | 00 | 0 | no |
|----|----------|----------|-----------|----------|
| 4 | 01 | 0 | 1 | yes |
|----|----------|----------|-----------|----------|
| 5 | 20 | | 20 | yes |
|----|----------|----------|-----------|----------|
| 6 | 003000 | 00 | 3000 | yes |
|----|----------|----------|-----------|----------|
| 7 | 00004 | 0000 | 4 | yes |
|----|----------|----------|-----------|----------|
| 8 | 500000 | | 500000 | yes |
|----|----------|----------|-----------|----------|
为什么在这些情况下会出现两次 0?
最佳答案
就像其他评论者说的,只是解析为字符串。
如果您仍然希望 Spirit 的 int_
解析器方便地解析(带符号的)整数,请将其包装在 raw[]
中以传播到迭代器范围(这是与字符串兼容):
#include <boost/spirit/home/x3.hpp>
#include <boost/spirit/include/support_istream_iterator.hpp>
#include <iostream>
#include <iomanip>
namespace x3 = boost::spirit::x3;
int main() {
std::istringstream iss("1 02 030 00400 0005");
std::vector<std::string> nums;
boost::spirit::istream_iterator iter(iss >> std::noskipws), eof;
bool ok = phrase_parse(iter, eof, *x3::raw[x3::int_], x3::space, nums);
if (ok) {
std::cout << "parsed: " << std::endl;
for (auto num : nums)
std::cout << std::quoted(num) << "\n";
}
}
打印
parsed:
"1"
"02"
"-030"
"00400"
"0005"
关于c++ - 在 boost spirit x3 解析结果中包含前导零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55553148/
我正在将一个手写解析器迁移到 Boost.Spirit (2.5.4)。第一印象是积极的,但由于我使用的是 C++17,X3 似乎是一个非常有吸引力的选择。 幸运的是,有很多关于 X3 的可用资源:
是否可以使用 boost::spirit::qi 来解析以下内容? A_B --> (A, B) A_B_C --> (A_B, C) A_B_C_D --> (A_B_
我正在尝试解析一种类似 lisp 的语言,它具有一些通用功能的语法糖。例如,plus 函数可以写成 (+ 1 2) 或 1 + 2。我认为在尝试解释语言之前消除句法糖会显着促进解释过程,因为那样的话,
我正在尝试解析一种类似 lisp 的语言,它具有一些通用功能的语法糖。例如,plus 函数可以写成 (+ 1 2) 或 1 + 2。我认为在尝试解释语言之前消除句法糖会显着促进解释过程,因为那样的话,
我想使用解析后的值作为循环解析器的输入。 语法定义了一个 header ,它指定了以下字符串的(可变)大小。例如,假设以下字符串是某个解析器的输入。 12\r\nTest Payload 解析器应提取
我正在编写 DSL 并使用 Boost Spirit 词法分析器来标记我的输入。在我的语法中,我想要一个类似于此的规则(其中 tok 是词法分析器): header_block = tok.n
我有以下精神语法。我正在尝试在 struct myresult 中创建 AST 节点的向量使用标准 push_back(at_c(qi::_val), qi::_1)但出现编译错误(见下文)。 typ
需要为 std::pair 对象提供类型为 boost::variant 的对象的值。您将如何使用其他资源来实现这个想法?下面还有其他方法吗? struct aggr_pair_visitor
我有一个词法分析器,基于该词法分析器,我现在想创建一个使用该词法分析器生成的标记的语法。我尝试改编我发现的一些示例,现在我有一些可以编译和工作的东西至少有一点,但我的一个应该失败的测试却没有。现在我想
当我使用此 qi 语法从 Lex 接受标记时: pair %= token(ID_MARKER) >> ':' >> atom >> ',' >> atom
如何解析可能包含 double 或 int 的字符串,具体取决于是否设置了点。例如。 6.0是double类型,6是int类型。规则是 rule,skipper> r = qi::double_|qi
请帮助我诊断以下错误。我有一个简单的语法: struct json_start_elem_grammar_object : qi::grammar { json_start_elem_gramma
作为使用 Boost.Spirit 的更大语法的第一阶段,我尝试解析“true”和“false”以生成相应的 bool 值,true 和 false. 我正在使用 Spirit.Lex 对输入进行标记
我正在尝试解析一个也可以包含标识符的表达式并将每个元素推送到 std::vector 中,我想出了以下语法: #include #include #include #include name
我正在为 if 函数实现生产规则: qi::rule f_if; f_if = qi::ascii::string("if") >> qi::char_('(')
我编写了这段代码示例并期望它打印OPERATION( OPERATOR(aaa) ID(bbb) ) 但我只得到OPERATION ( OPERATOR(aaa) )反而。 result2 和 it1
我的数据定义为: std::string data("START34*23*43**"); 我的语法: "START" >> boost::spirit::hex % '*' 题: 如何解析有两颗星的
我编写了这段代码示例并期望它打印OPERATION( OPERATOR(aaa) ID(bbb) ) 但我只得到OPERATION ( OPERATOR(aaa) )反而。 result2 和 it1
我需要解析一个键值对,其中键本身是示例中的固定字符串lke'cmd'。不幸的是qi::lit没有综合属性,并且qi::char_没有解析固定的字符串。 以下代码无法编译。执行后,我需要那个result
我正在尝试编写精神规则,但我无法弄清楚这个新规则的属性是什么。 以下代码按我预期的方式工作。 #include #include #include #include #include nam
我是一名优秀的程序员,十分优秀!