用 C++ 解析 XML
我想
<gains>5.640244e+03 5.640322e+03 5.640402e+03 5.640480e+03 5.640560e+03 </gains>
使用 C++ 解析以下 xml 标签..
任何人都可以帮助我吗?
i want to parse following xml tags
<gains>5.640244e+03 5.640322e+03 5.640402e+03 5.640480e+03 5.640560e+03 </gains>
using c++..
can any one help me??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,因为您没有告诉我们此示例的解析器的输出应该是什么。
要设计一个解析器,您应该给出语法规则(非正式的即可),然后给出一个或多个示例。然而,这些例子并不是语法。
No, because you haven't told us what the output of the parser should be for this example.
To design a parser you should give the rules of the grammar (informally is fine) and then one or more examples. The examples aren't the grammar, however.
OP 可能需要科学记数法的 C++ 流处理方面的帮助。在这种情况下,请参阅 http://www.cplusplus.com/reference/iostream /manipulators/scientific/ 获取一些有用的提示。
否则,我同意 Ben Voigt 的观点,需要更多信息/背景才能提供进一步的帮助。
It's possible that the OP is needing assistance with c++ stream processing of scientific notation. In that case, please see http://www.cplusplus.com/reference/iostream/manipulators/scientific/ for some helpful hints.
Otherwise, I agree with Ben Voigt, need more information/context in order to be of further assistance.