C++ 中的 ASCII建造者XE

发布于 2024-11-02 04:38:07 字数 239 浏览 0 评论 0原文

我想在 Embarcadero C++ Builder XE 中完全使用 ASCII 制作应用程序,但 C++ Builder XE 的 VCL 现在是 UNICODE 基础。

任何人都知道我该怎么做,

如果有任何预处理器指令或其他任何东西

我想使用 sqlite3 作为后端,但我看到的所有代码示例都使用 ASCII,而 Unicode 对我不起作用。

我已经用谷歌搜索了几天但没有找到任何解决方案

I want to make an application in Embarcadero C++ Builder XE totally in ASCII but C++ Builder XE's VCL are now UNICODE base.

Anybody has any kind of idea that how can I do that

If any Preprocessor Directives or anything else

I want to use sqlite3 as a backend, but all the code examples I see use ASCII and the Unicode doesn't work for me.

I've been Googleing it for couple of days but didn't find any solution

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

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

发布评论

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

评论(1

楠木可依 2024-11-09 04:38:07

您可以使用 AnsiString 字符串类,不同的 VCL 字符串之间可以毫无问题地进行转换其他。如果您有 UnicodeString 并希望将字符数组作为常规 8 位字符进行访问您可以使用 数据类型代替 wchar_t 数据类型t_str() 函数而不是 c_str ()

不过,我建议您查看 UTF8String类,它是最有趣的字符串类之一,因为它向后兼容 7 位 ASCII,并为您提供支持国际字符的可能性。

You can use the AnsiString string classes, the different VCL strings convert without problems between each other. If you have a UnicodeString and want to access the character array as regular 8 bit characters instead of the wchar_t datatype you can use the t_str() function instead of the c_str().

I would however suggest that you looked at the UTF8String class, it is one of the most interesting of the string classes because it is backwards compatible with 7-bit ASCII as well as giving you the possibility of supporting international characters.

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