在 MFC Unicode 应用程序中将 CString 转换为 const char*
在 Unicode MFC 应用程序中,可能需要将 TCHAR CString 转换为常量字符*。此转换允许与使用 ASCII 字符串的其他应用程序或组件进行互操作。
为了促进此转换,可以使用 CT2A 宏。 CT2A 可以将 TCHAR CString 转换为 ASCII 以及其他 Windows 代码页,例如 UTF8。
示例代码:
以下代码演示了如何使用CT2A 将 TCHAR CString 转换为 ASCII、UTF8 和泰语代码页:
<code class="cpp">// Convert using the local code page CString str(_T("Hello, world!")); CT2A ascii(str); TRACE(_T("ASCII: %S\n"), ascii.m_psz); // Convert to UTF8 CString str(_T("Some Unicode goodness")); CT2A ascii(str, CP_UTF8); TRACE(_T("UTF8: %S\n"), ascii.m_psz); // Convert to Thai code page CString str(_T("Some Thai text")); CT2A ascii(str, 874); TRACE(_T("Thai: %S\n"), ascii.m_psz);</code>
附加说明:
以上是如何在 MFC Unicode 应用程序中将 CString 转换为 const char*?的详细内容。更多信息请关注PHP中文网其他相关文章!