TinyXml 和字符串

发布于 2024-12-10 09:57:31 字数 138 浏览 0 评论 0 原文

我正在尝试读取存储信息的 xml 文件的属性。我需要以字符串的形式检索该信息,但我无法做到这一点,因为我找不到任何返回字符串的tinyXml 方法,而且我无法找到将内容从 char* 转换为 String^ 的方法。有人对该怎么做有建议吗?

谢谢

I'm trying to read an xml file's attributes where I'm storing information. I need to retrieve that information in the form of strings and I'm unable to do that since I cant find any tinyXml method that would return a string and I cant figure out a way to convert things from char* to String^. Does anyone have a suggestion on what to do?

Thanks

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

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

发布评论

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

评论(2

眼眸里的那抹悲凉 2024-12-17 09:57:31

在 TinyXML 中,您可以使用 Attribute() 函数获取 XmlElements 属性。它返回 const char * ,它可以转换为字符串,正如 Adrian 在他/她的答案中根据 http://cplusplus.com/reference/string/string/string/string ( const char * s )

有关属性函数的更多信息:http://www.grinninglizard.com/tinyxmldocs/classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d

In TinyXML you can get XmlElements attribute with Attribute() function. It returns const char * which can be converted to string as Adrian have stated in his/her answer according to http://cplusplus.com/reference/string/string/string/ with string ( const char * s ).

More about the Attribute function: http://www.grinninglizard.com/tinyxmldocs/classTiXmlElement.html#e419a442a9701a62b0c3d8fd1cbdd12d

苏别ゝ 2024-12-17 09:57:31

您可以将 char * 转换为 string
根据 http://cplusplus.com/reference/string/string/string/ C++ string 有这个构造函数:string ( const char * s )

You can convert char * to string.
According to http://cplusplus.com/reference/string/string/string/ C++ string has this ctor: string ( const char * s )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文