本文整理汇总了C++中tstring::find_last_not_of方法的典型用法代码示例。如果您正苦于以下问题:C++ tstring::find_last_not_of方法的具体用法?C++ tstring::find_last_not_of怎么用?C++ tstring::find_last_not_of使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tstring
的用法示例。
在下文中一共展示了tstring::find_last_not_of方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: trim
tstring trim(const tstring &tstr, const tstring& trimChars)
{
size_t s = tstr.find_first_not_of(trimChars);
size_t e = tstr.find_last_not_of (trimChars);
if ((tstring::npos == s) || ( tstring::npos == e))
return _T("");
else
return tstr.substr(s, e - s + 1);
}
示例2: trim
void trim(tstring& str, char ch)
{
tstring::size_type pos = str.find_first_not_of(ch);
if (pos == tstring::npos)
{
str = _T("");
return;
}
tstring::size_type pos2 = str.find_last_not_of(ch);
if (pos2 != tstring::npos)
{
str = str.substr(pos, pos2 - pos + 1);
}
else
{
str = str.substr(pos);
}
}
示例3: TriToken
tstring TriToken(tstring& Token){
tstring::size_type begin = Token.find_first_not_of(_T(' '));
if(begin == string::npos)return Token;
tstring::size_type end = Token.find_last_not_of(_T(' '));
return Token.substr(begin,end-begin+1);
}