test” );
LPTSTR lpsz = new TCHAR[theString.GetLength()+1];
_tcscpy(lpsz, theString);
需要说明的是,strcpy(或可移值...temp,10); //将i转换为字符串放入temp中,最后一个数字表示十进制
itoa(i,temp,2); //按二进制方式转换
长整型(long)
ltoa(l,temp,10)...123″);
短整型(int)
i = atoi(temp);
长整型(long)
l = atol(temp);
浮点(double)
d = atof(temp);
四、其它数据类型转换到CString...大于0和等于0的值
【例】result=strcmp(”baker”,”Baker”); //result>0
result=strcmp(”12″,”12″); //result=...0
result=strcmp(”Joe”,”joseph”) //result<0
5、字符定位
char *strchr(char *s,char c);//找c在字符串s中第一次出现的位置,