在我的代码中,我尝试创建大量4个咬字符,其中每个字符都包含西里尔字母。
wchar_t OUT_STRING[4] = { L'т',L'л',L'о',L'р' };
一切正常,我有预期的输出。这只是测试,实际上我需要将元素从字符串转换为相同的类型,例如OUT_STRING;我试图使用这样的东西:
wchar_t OUT_STRING[4] = { (wchar_t)'т',L'л',L'о',L'р' };
但是它不起作用,在输出中我有一个矩形。
答案 0 :(得分:0)
我认为您想使用UTF-8编码中的std :: string传递字符串,并一次处理一个字符,每次将单个字符转换为宽字符串长度1,以便您可以将其传递到TTF_SizeUNICODE
和TTF_RenderUNICODE_Blended
。
我将演示相关的字符串转换代码。
这里是一个test
函数,它期望一个以空字符结尾的宽字符串,其中只包含一个字符。 main
的正文显示了如何将UTF-8字符串转换为UTF-16(使用codecvt_utf8_utf16
)以及如何将单个字符转换为字符串(使用std::wstring(1, ch)
)
#include <string>
#include <codecvt>
#include <iostream>
void test(const wchar_t* str) {
std::cout << "Number of characters in string: " << wcslen(str) << std::endl;
for (const wchar_t* ch = str; *ch; ++ch) {
std::cout << ((int)*ch) << std::endl;
}
}
int main() {
std::string input = u8"тлор";
for (wchar_t ch : std::wstring_convert<std::codecvt_utf8_utf16<wchar_t>, wchar_t>().from_bytes(input)) {
std::wstring string_with_just_one_character(1, ch);
test(string_with_just_one_character.c_str());
}
return 0;
}