C++ 中的 ASCII建造者XE
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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 thet_str()
function instead of thec_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.