在yaml-cpp中修改内存中的文档
我想读取一个 YML 文档,通过修改内存中的一些节点来过滤它,然后用发射器将其吐出。问题在于 YAML::Node 似乎被设计为只读。有没有办法替换我丢失的节点值(在本例中为标量)?
I want to read a YML document, filter it by modifying some nodes in memory, and then spit it back out with an emitter. The problem is that YAML::Node appears to be designed to be read-only. Is there a way to replace a node's value (with a scalar in this case) that I'm missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 YAML 所做的就是读取文件,然后将 YAML 数据放入我的数据结构中。也许不是您正在寻找的,但这是一种方法。
What I do with YAML is I read the file and then put the YAML data into my down data structure. Maybe not what you're looking for, but it's one way.