Cherry Cloud 9

[MFC] CString 마지막 글자 제거하기 본문

Programming/API,MFC

[MFC] CString 마지막 글자 제거하기

체리구름 2020. 11. 16. 18:56
728x90
반응형

CString strMsg = ("Hello World!");

strMsg.Delete(strMsg.GetLength()-1);

 

//Hello World

728x90
반응형