我有這個變量dirpath2哪裏存放的路徑最深的目錄名稱:C++ tstring比較
typedef std::basic_string<TCHAR> tstring;
tstring dirPath = destPath;
tstring dirpath2 = dirPath.substr(destPathLenght - 7,destPathLenght - 1);
我希望能夠比較一下它另一個字符串,是這樣的:
if (_tcscmp(dirpath2,failed) == 0)
{
...
}
我已經嘗試了很多東西,但似乎沒有任何工作。任何人都可以告訴我該怎麼做,或者我做錯了什麼?
請記住,我對C++幾乎一無所知,而這整件事情讓我瘋狂。提前
想要比較2 std :: string嗎?爲什麼不直接使用==? – 2010-10-18 14:04:24