Rapidxml 和 UTF8

发布于 2024-10-06 04:05:21 字数 85 浏览 6 评论 0原文

我正在使用 RapidXML,但我需要将字符串编写为 UTF8,Rapidxml 手册中解释了它支持 UTF8 ,请告诉我如何通过 C++ ISO 使用它?

I am using RapidXML, but I need to write my strings as UTF8, in Rapidxml Manual was explained it supports UTF8 , please tell me how can I use it via C++ ISO ?

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

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

发布评论

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

评论(1

深海夜未眠 2024-10-13 04:05:21

RapidXML 的默认操作模式是处理UTF-8 输入。您必须使用 parse_no_utf8 显式禁用此功能才能获得其他行为。

解析标志指示解析器
禁用 UTF-8 处理并假设
纯 8 位字符。默认情况下,
UTF-8 处理已启用。

The default mode of operation for RapidXML is to handle UTF-8 input. You would have to disable this explicitly using parse_no_utf8 to get other behaviour.

Parse flag instructing the parser to
disable UTF-8 handling and assume
plain 8 bit characters. By default,
UTF-8 handling is enabled.

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