楼主说的是VC里的CString类吧。其实多数情况下都不用转的。实在要转的话GetBuffer()或者LPCSTR或者下面的做法应该可以吧。
Quote:
CString str=_T("wwwwwwww");
int len=str.GetLenght();
TCHAR *pCH=new TCHAR [len+1];
for (int i=0;i<len;i++)
{
pCH[ i ]=str.GetAt(i);
}
pCH[len]=NULL;
........
后面记得用delete [] pCH;
[ 此帖被路客与刀客在2008-04-08 23:07重新编辑 ]