convert unicode to char(将 unicode 转换为 char)
问题描述
如何在 char* 或 char* const
="nofollow">embarcadero c++ ?
How can I convert a Unicode string to a char*
or char* const
in embarcadero c++ ?
推荐答案
Unicode 字符串"确实不够具体,无法知道您的源数据是什么,但您可能是指UTF-16 字符串存储为 wchar_t 数组",因为这是大多数不知道正确术语的人使用的.
"Unicode string" really isn't specific enough to know what your source data is, but you probably mean 'UTF-16 string stored as wchar_t array' since that's what most people who don't know the correct terminology use.
"char*" 也不足以知道你想要定位什么,尽管也许 "embarcadero" 有一些约定.除非您另有说明,否则我将假设您需要 UTF-8 数据.
"char*" also isn't enough to know what you want to target, although maybe "embarcadero" has some convention. I'll just assume you want UTF-8 data unless you mention otherwise.
另外,我将把我的例子限制在 VS2010 中的工作
Also I'll limit my example to what works in VS2010
// your "Unicode" string
wchar_t const * utf16_string = L"Hello, World!";
// #include <codecvt>
std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>,wchar_t> convert;
std::string utf8_string = convert.to_bytes(utf16_string);
这假设 wchar_t 字符串是 UTF-16,就像在 Windows 上的情况一样,否则是可移植代码.
This assumes that wchar_t strings are UTF-16, as is the case on Windows, but otherwise is portable code.
这篇关于将 unicode 转换为 char的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 unicode 转换为 char


- 如何对自定义类的向量使用std::find()? 2022-11-07
- C++ 协变模板 2021-01-01
- 静态初始化顺序失败 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 从python回调到c++的选项 2022-11-16
- STL 中有 dereference_iterator 吗? 2022-01-01
- 近似搜索的工作原理 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01