C++ CString转char数组

1.第一种方法是通过strncpy_s

这种在unicode字符集测试没有问题

	CString sendstr = _T("sadf");
	char buf[100] = {};//是将sendstr中的内容拷贝到buf
	//以下两步是先将CString转为string,再由c_str()转为const char*
	string stra = CStringA(sendstr);
	strncpy_s(buf, _countof(buf), stra.c_str(), sendstr.GetLength());

2.通过memcpy

这种在unicode字符集测试会出现截断,char字符会用“\n”

CString sendstr:
char buf[100] =  {};//是将sendstr中的内容拷贝到buf
memcpy(buf,LPCTSTR(sendstr),sendstr.GetLength()*sizeof(TCHAR));

3.通过循环遍历

	CString cstr = "CStringChangeToChar";
	char input[100];
	if(cstr=="")
	{
		input[0]='\0';
	}
	else
	{
		int length = cstr.GetLength();
		for(int i=0;i

 

 

 

你可能感兴趣的:(C++基础)