您想要的函数位于可以在 Windows 中使用的标准 C 库中。
char theDrive[5],thePath[MAX_PATH],theFilename[MAX_PATH],theExtension[MAX_PATH];
_splitpath(theSCTDataFilename,theDrive,thePath,theFilename,theExtension);
您还可以使用像这样的更通用的标记函数,它接受任何字符串、char 和 CStringArray..
void tokenizeString(CString theString, TCHAR theToken, CStringArray *theParameters)
{
CString temp = "";
int i = 0;
for(i = 0; i < theString.GetLength(); i++ )
{
if (theString.GetAt(i) != theToken)
{
temp += theString.GetAt(i);
}
else
{
theParameters->Add(temp);
temp = "";
}
if(i == theString.GetLength()-1)
theParameters->Add(temp);
}
}
CStringArray thePathParts;
tokenizeString("your\complex\path\of\strings\separated\by\slashes",'/',&thePathParts);
这将为您提供一个 CString 数组(CStringArray 对象),其中包含输入字符串的每个部分。只要您知道要拆分字符串的分隔符,您就可以使用此函数解析主要块然后解析次要块。