本文整理汇总了C++中nlmisc::CSString::leftCrop方法的典型用法代码示例。如果您正苦于以下问题:C++ CSString::leftCrop方法的具体用法?C++ CSString::leftCrop怎么用?C++ CSString::leftCrop使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类nlmisc::CSString
的用法示例。
在下文中一共展示了CSString::leftCrop方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getFileVersion
uint32 getFileVersion(const NLMISC::CSString& fileName)
{
// start at the back of the file name and scan forwards until we find a '/' or '\\' or ':' or a digit
uint32 i= fileName.size();
while (i--)
{
char c= fileName[i];
// if we've hit a directory name separator then we haven't found a version number so drop out
if (c=='/' || c=='\\' || c==':')
return ~0u;
// if we've found a digit then construct the rest of the version number and return
if (isdigit(c))
{
uint32 firstDigit= i;
while (firstDigit!=0 && isdigit(fileName[firstDigit-1]))
{
--firstDigit;
}
return fileName.leftCrop(firstDigit).left(i-firstDigit+1).atoui();
}
}
// default to our 'invalid' value
return ~0u;
}
示例2: addToFdc
static void addToFdc(const NLMISC::CSString& filespec, CFileDescriptionContainer& result)
{
if (filespec.left(1)=="@")
{
readFileList(filespec.leftCrop(1),result);
}
else
{
result.addFileSpec(filespec);
}
}