在C++中,CString 是一种常用于MFC(Microsoft Foundation Classes)库的字符串类。要从 CString 对象中获取最后一个字符,你可以按照以下步骤进行: 确定字符串的长度: 使用GetLength() 方法来获取 CString 对象的长度。 通过长度减一来找到最后一个字符的索引: 由于字符串索引从0开始,所以最后一个字符的索引是 长度- ...
CString str=_T("Microsoft Window7");str=str.Left(str.GetLength()-1); //str="Microsoft Window"
CString str=_T("Microsoft Window7");str=***.left(***.getlength()-1); //str="Microsoft Window" 00分享举报为您推荐 Qstring getbuffer函数 int转cstring string转cstring getprivateprofilestring函数 CString转string setdlgitemtext用法 selectobject函数 LoadString char转cstring COleSafeArray...
CString str1="asdfadsfasf";str1.Left(str1.GetLength() - 1);//CString友好多方法时对字符串操作的,看看msdn就明白了。