c++中怎样将ASCII编码的字符串转换为UTF-8
时间: 2024-02-20 11:01:28 浏览: 129
如何将编码转换为UTF-8
在 C++ 中,可以使用以下方法将 ASCII 编码的字符串转换为 UTF-8 编码的字符串:
```c++
#include <iostream>
#include <string>
#include <locale>
#include <codecvt>
std::wstring_convert<std::codecvt_utf8<char>> converter;
int main() {
std::string asciiStr = "Hello, world!"; // ASCII 编码的字符串
std::wstring utf16Str = converter.from_bytes(asciiStr); // 将 ASCII 编码的字符串转换为 UTF-16 编码的字符串
std::string utf8Str = converter.to_bytes(utf16Str); // 将 UTF-16 编码的字符串转换为 UTF-8 编码的字符串
std::cout << utf8Str << std::endl; // 输出 UTF-8 编码的字符串
return 0;
}
```
在上面的代码中,我们使用 `std::wstring_convert` 类和 `std::codecvt_utf8` 类型的模板参数来完成 ASCII 到 UTF-8 的转换。首先,我们将 ASCII 编码的字符串转换为 UTF-16 编码的字符串,然后再将 UTF-16 编码的字符串转换为 UTF-8 编码的字符串。最后,我们将转换后的 UTF-8 编码的字符串输出到控制台上。
需要注意的是,上述代码中使用的 `std::wstring_convert` 类在 C++17 中被标记为废弃,建议使用 `std::codecvt` 类型的模板参数来完成编码转换。
阅读全文