在Unicode MFC 應用程式中將CString 轉換為Const char*
問題:
問題:問題:
<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>
問題:
問>如何我將CString(特別是當它包含TCHAR 字元時)轉換為Unicode MFC 應用程式中的const char* 表示形式? 解決方案:要有效轉換 TCHAR CString對於 ASCII,您應該使用 CT2A 巨集。該巨集不僅允許 ASCII 轉換,還允許轉換為 UTF8 或其他 Windows 代碼頁。以下是一些範例來示範其用法:此外,還有一個用於從 ASCII 轉換為 Unicode (CA2T) 的巨集。如果您有 VS2003 或更高版本,則可以在 ATL/WTL 應用程式中使用這些巨集。更詳細的資訊可以在 MSDN 文件中找到。以上是如何在 Unicode MFC 應用程式中將 CString 轉換為 const char*?的詳細內容。更多資訊請關注PHP中文網其他相關文章!