解析 yaml-cpp 中的注释

发布于 2024-12-17 15:52:25 字数 122 浏览 1 评论 0原文

作为一个更大项目的一部分,我用 C++(和 Qt)创建了一个图形 yaml 文件编辑器。我使用 yaml-cpp 库,一切正常。 也可以解析评论吗?写评论没问题,但我没有找到阅读它们的解决方案。

提前致谢, 菲利普

as a part of a bigger project i create a graphical yaml-file editor in c++ (and Qt). I use the yaml-cpp library and everything works fine.
Ist it possible to parse comments, too? Writing comments is no problem, but i did not find a solution to read them.

Thanks in advance,
Filip

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雨落星ぅ辰 2024-12-24 15:52:25

这是不可能的(注释不是表示图的一部分,因此不会保留它们)。

This isn't possible (comments are not part of the representation graph, so they're not retained).

南城追梦 2024-12-24 15:52:25

如果我正确理解你的问题,你可以将它们添加为数据的一部分:

# This is an example yaml config file
_comment: This is a comment I would like to retain with my data
foo:
   _comment: Another one
   bar: 1
   baz: '2'
fie:
   bar: 3
   baz: "4"
fum:
   bar: 5
   baz: 6

If I understand your question correctly, you could just add them as part of the data:

# This is an example yaml config file
_comment: This is a comment I would like to retain with my data
foo:
   _comment: Another one
   bar: 1
   baz: '2'
fie:
   bar: 3
   baz: "4"
fum:
   bar: 5
   baz: 6
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文