CString->std::string 例子:
CString strMfc=“test“;
std::string strStl;
strStl=strMfc.GetBuffer(0);
unicode情形下:
CStringW strw = _T("test");
CStringA stra(strw.GetBuffer(0));
strw.ReleaseBuffer();
std::string imgpath=stra.GetBuffer(0);
stra.ReleaseBuffer();
std::string->CString 例子:
CString strMfc;
std::string strStl=“test“;
strMfc=strStl.c_str();
AfxExtractSubString是截取字符串的函數,很好用,不過美中不足的地方在與它只能使用單個字符作為分割符。
但是這種情況在很多時候都行不通,如果分割符需要是兩個字符以上呢?
之前因為這個問題試了很久,也在網上搜索過。不過可惜的是,網上的大部分關於VC截取字符串的文章都是那麼同樣的幾篇,都是寫的滿復雜然後可以實現了AfxExtractSubString功能而已的,也就是只能用單個字符截取,但是標題卻寫著用字符串截取字符串,好笑!
不找了,自己寫吧。CString裡面有Find,然後再組成數組。
void Split(CString source, CStringArray& dest, CString division)
{
dest.RemoveAll();
int pos =0;
int pre_pos =0;
while( -1!= pos ){
pre_pos = pos;
pos = source.Find(division,(pos+1));
dest.Add(source.Mid(pre_pos,(pos-pre_pos)));
}
}
CString source是需要截取的原字符串,
CStringArray& dest 是最終結果的數組
CString division 是用來做分割符的字符串