截取字符串

截取字符串
1.截取当前exe全路径的前部分
CString GetModulePath()
{
    CString strPath;
    GetModuleFileName(NULL, strPath.GetBuffer(MAX_PATH), MAX_PATH);
    strPath.ReleaseBuffer();

    
int nPos = strPath.ReverseFind('\\');
    strPath 
= strPath.Left(nPos+1);

    
return strPath;
}
2.截取全路径,得到进程名
CString CutPath(CString szFullPath)
{
    CString szCut;
    szCut.Format(
"%s",szFullPath );
    
int k = szCut.ReverseFind('\\');
    CString szCut2  
= szCut.Mid(k + 1);
    
return szCut2;
}


你可能感兴趣的:(截取字符串)