各种类型字符之间的转换(单字节char*和宽字节wchar_t*,TCHAR和string的转换)

时间:2022-12-09 20:15:41
  • //将单字节char*转化为宽字节wchar_t*  
  • wchar_t* AnsiToUnicode( const char* szStr )  
  • {  
  •     int nLen = MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, szStr, -1, NULL, 0 );  
  •     if (nLen == 0)  
  •     {  
  •         return NULL;  
  •     }  
  •     wchar_t* pResult = new wchar_t[nLen];  
  •     MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED, szStr, -1, pResult, nLen );  
  •     return pResult;  
  • }  
  •   
  • //将宽字节wchar_t*转化为单字节char*  
  • inline char* UnicodeToAnsi( const wchar_t* szStr )  
  • {  
  •     int nLen = WideCharToMultiByte( CP_ACP, 0, szStr, -1, NULL, 0, NULL, NULL );  
  •     if (nLen == 0)  
  •     {  
  •         return NULL;  
  •     }  
  •     char* pResult = new char[nLen];  
  •     WideCharToMultiByte( CP_ACP, 0, szStr, -1, pResult, nLen, NULL, NULL );  
  •     return pResult;  


  • //在unicode环境下将TCHAR 转换为std::string

  • inline std::string TCHAR2STRING(TCHAR* str)
  • {
  • int nlen=WideCharToMultiByte(CP_ACP,0,str,-1,NULL,0,NULL,NULL);
  • char* res=new char[nlen*sizeof(char)];
  • WideCharToMultiByte(CP_ACP,0,str,-1,res,0,NULL,NULL);
  • return string(res);
  • }







  •