gpt4 book ai didi

c++ - boost spirit : Why does phrase_parse behave differently to parse when parsing eol?

转载 作者:太空狗 更新时间:2023-10-29 20:55:37 25 4
gpt4 key购买 nike

为什么 qi::phrase_parseqi::eol 返回 false?我希望它像 qi::parse 那样返回 true

using namespace boost::spirit;

const std::string s = "\n";

auto it = s.begin();
bool match = qi::phrase_parse(it, s.end(), qi::eol, ascii::space);
std::cout << std::boolalpha << match << '\n';

it = s.begin();
match = qi::parse(it, s.end(), qi::eol);
std::cout << std::boolalpha << match << '\n';

结果:

false
true

最佳答案

skipper 跳过空格。

空格包括 eol

因此,eol 永远不会匹配。

提示:使用blank作为空格 eol

关于c++ - boost spirit : Why does phrase_parse behave differently to parse when parsing eol?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35302217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com