如何获取 TinyXML 中标签的名称?

发布于 2024-12-05 12:07:04 字数 155 浏览 1 评论 0原文

例如:

test.xml

<fruit taste="good">whatever</fruit>

如何使用 TinyXML 获取标签“fruit”(当然是“fruit”)的名称字符串?

For example:

test.xml

<fruit taste="good">whatever</fruit>

How can I get the name-string of the tag "fruit" (which would be "fruit" of course) using TinyXML?

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

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

发布评论

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

评论(1

停顿的约定 2024-12-12 12:07:04

使用 TiXmlElement::Value()

Value 函数根据类型返回不同的东西。

    Document:   filename of the xml file
    Element:    name of the element
    Comment:    the comment text
    Unknown:    the tag contents
    Text:       the text string

Use TiXmlElement::Value()

The Value function returns different things based on the type.

    Document:   filename of the xml file
    Element:    name of the element
    Comment:    the comment text
    Unknown:    the tag contents
    Text:       the text string
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文