本文整理汇总了C++中t_Str::erase方法的典型用法代码示例。如果您正苦于以下问题:C++ t_Str::erase方法的具体用法?C++ t_Str::erase怎么用?C++ t_Str::erase使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类t_Str
的用法示例。
在下文中一共展示了t_Str::erase方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Trim
// Trim
// Trims whitespace from both sides of a string.
void Trim(t_Str& szStr)
{
t_Str szTrimChars = WhiteSpace;
szTrimChars += EqualIndicators;
int nPos, rPos;
// trim left
nPos = szStr.find_first_not_of(szTrimChars);
if ( nPos > 0 )
szStr.erase(0, nPos);
// trim right and return
nPos = szStr.find_last_not_of(szTrimChars);
rPos = szStr.find_last_of(szTrimChars);
if ( rPos > nPos && rPos > -1)
szStr.erase(rPos, szStr.size()-rPos);
}
示例2: GetNextWord
// GetNextWord
// Given a key +delimiter+ value string, pulls the key name from the string,
// deletes the delimiter and alters the original string to contain the
// remainder. Returns the key
t_Str GetNextWord(t_Str& CommandLine)
{
int nPos = CommandLine.find_first_of(EqualIndicators);
t_Str sWord = t_Str("");
if ( nPos > -1 )
{
sWord = CommandLine.substr(0, nPos);
CommandLine.erase(0, nPos+1);
}
else
{
sWord = CommandLine;
CommandLine = t_Str("");
}
Trim(sWord);
return sWord;
}
示例3: GetNextWord
// GetNextWord
// Given a key +delimiter+ value string, pulls the key name from the string,
// deletes the delimiter and alters the original string to contain the
// remainder. Returns the key
t_Str GetNextWord(t_Str& CommandLine)
{
int nPos = CommandLine.find(EqualIndicators[0]);
if(nPos == gedString::npos)
nPos = CommandLine.find(EqualIndicators[1]);
t_Str sWord = t_Str("");
if ( nPos > -1 )
{
sWord = CommandLine.substr(0, nPos);
CommandLine.erase(0, nPos+1);
}
else
{
sWord = CommandLine;
CommandLine = t_Str("");
}
Trim(sWord);
return sWord;
}