如何将 pugi::char_t* 转换为字符串

发布于 2024-11-09 10:39:25 字数 407 浏览 3 评论 0原文

你好 我正在使用 pugixml 来处理 xml 文档。我使用这种构造迭代节点,

 pugi::xml_node tools = doc.child("settings");

    //[code_traverse_iter
    for (pugi::xml_node_iterator it = tools.begin(); it != tools.end(); ++it)
    {
        //std::cout << "Tool:";
        cout <<it->name();

    }

问题是 it->name() 返回 pugi::char_t* 并且我需要将其转换为 std::string。是否可以 ??我在 pugixml 网站上找不到任何信息

Hi
I'm using pugixml to process xml documents. I iterate through nodes using this construction

 pugi::xml_node tools = doc.child("settings");

    //[code_traverse_iter
    for (pugi::xml_node_iterator it = tools.begin(); it != tools.end(); ++it)
    {
        //std::cout << "Tool:";
        cout <<it->name();

    }

the problem is that it->name() returns pugi::char_t* and I need to convert it into std::string. Is it possible ?? I can't find any information on pugixml website

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

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

发布评论

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

评论(2

香草可樂 2024-11-16 10:39:26

根据手册pugi::char_tcharwchar_t,具体取决于您的库配置。这样您就可以在单字节(ASCII 或 UTF-8)和双字节(通常是 UTF-16/32)之间切换。

这意味着您不需要将其更改为任何内容。但是,如果您使用 wchar_t* 变体,则必须使用匹配的流对象:

#ifdef PUGIXML_WCHAR_MODE
std::wcout << it->name();
#else
std::cout << it->name();
#endif

并且,既然您要求,构造一个 std::string 或来自它的 std::wstring

#ifdef PUGIXML_WCHAR_MODE
std::wstring str = it->name();
#else
std::string str = it->name();
#endif

或者,始终是 std::string这很少是您想要的!):

#ifdef PUGIXML_WCHAR_MODE
std::string str = as_utf8(it->name());
#else
std::string str = it->name();
#endif

希望这会有所帮助。

来源:粗略浏览一下“pugixml”文档。

According to the manual, pugi::char_t is either char or wchar_t, depending on your library configuration. This is so that you can switch between single bytes (ASCII or UTF-8) and double bytes (usually UTF-16/32).

This means you don't need to change it to anything. However, if you're using the wchar_t* variant, you will have to use the matching stream object:

#ifdef PUGIXML_WCHAR_MODE
std::wcout << it->name();
#else
std::cout << it->name();
#endif

And, since you asked, to construct a std::string or std::wstring from it:

#ifdef PUGIXML_WCHAR_MODE
std::wstring str = it->name();
#else
std::string str = it->name();
#endif

Or, for always a std::string (this is rarely what you want!):

#ifdef PUGIXML_WCHAR_MODE
std::string str = as_utf8(it->name());
#else
std::string str = it->name();
#endif

Hope this helps.

Source: A cursory glance at the "pugixml" documentation.

凌乱心跳 2024-11-16 10:39:26

您也可以使用 stringstream,

std::stringstream ss;
ss << it->name();

std::string strValue = ss.str();

ps:不要忘记包含

#include <sstream>

you can use stringstream also,

std::stringstream ss;
ss << it->name();

std::string strValue = ss.str();

ps: Don't forget to include

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