本文整理匯總了C++中string_t::rbegin方法的典型用法代碼示例。如果您正苦於以下問題:C++ string_t::rbegin方法的具體用法?C++ string_t::rbegin怎麽用?C++ string_t::rbegin使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類string_t
的用法示例。
在下文中一共展示了string_t::rbegin方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。
示例1: dirname
string_t dirname(string_t source)
{
if (source.size() <= 1) //Make sure it's possible to check the last character.
{
return source;
}
if (*(source.rbegin() + 1) == '/') //Remove trailing slash if it exists.
{
source = source.substr(0, source.size() - 1);
}
source.erase(std::find(source.rbegin(), source.rend(), '/').base(), source.end());
return source;
}
示例2: ParseValue
void ParseValue(string_t &val)
{
if(!val.empty()&&m_idx.empty())
{
if(!_istspace((ushort)*val.rbegin()))
{//append a blank in order to reserve space for '\0' of the last string.
val.push_back(_TX(' '));
}
_create_arg_index(&val[0],&val[0]+val.size(),m_idx);
if(m_idx.empty()) //if contains no string
val.clear();
}
}