首页 > 代码库 > 字符串操作专题

字符串操作专题

CString

一、字符串切割问题:

CString str="country\\china";
#取\号之前的子串:

CString a;
int n;
n=str.ReverseFind(‘\\‘);
a=str.Left(n);

#取\号之后的子串:

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

字符串操作专题