当前位置: 首页>>代码示例>>C++>>正文


C++ TString::Delete方法代码示例

本文整理汇总了C++中TString::Delete方法的典型用法代码示例。如果您正苦于以下问题:C++ TString::Delete方法的具体用法?C++ TString::Delete怎么用?C++ TString::Delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TString的用法示例。


在下文中一共展示了TString::Delete方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: GetFestivalClass

int VAISNAVADAY::GetFestivalClass(TString &str)
{
	int i, j, val;

	i = str.Find("[c");

	if (i >= 0)
	{
//		i += 2;
		if ((i + 2) < str.GetLength())
		{
			val = int(str.GetAt(i+2) - '0');
			j = str.Find("]", i);
			if (j >= str.GetLength())
				j = str.GetLength();
			if (j > i)
			{
				str.Delete(i, j - i + 1);
			}
			if (val < 0 || val > 6)
				return -1;
			return val;
		}
		else
			return -1;
	}
	else
	{
		return -1;
	}

}
开发者ID:gopa810,项目名称:SamskaraTimes,代码行数:32,代码来源:GCVaisnavaDay.cpp

示例2: ReplaceHexFormWithOrdinals

void ReplaceHexFormWithOrdinals( TString& astring )
{
  int sl = astring.Length();
  for( int i=1; i<=sl; i++  )
  {
    if( astring[i]=='\\' )
      if( i<sl )
        if( astring[i+1]=='\\' )
        {
          astring.Delete( i, 1 );
          sl--;
        }
        else
        {
          if( astring[i+1]!='x' || i+3>sl )
            throw TException( "String '"+astring+"' not in CSV format." );

          char c = HexToInt( astring.c_str() + (i+1), 2 );
          astring[i] = c;
          astring.Delete( i+1, 3 );
          sl -= 3;
        }
  }
}
开发者ID:Sustak,项目名称:final.utils,代码行数:24,代码来源:csv.cpp

示例3: GetFastingSubject

void VAISNAVADAY::GetFastingSubject(TString &strFest, int &nFast, TString &strFastSubj)
{
	int nf, nf2;

	// default values
	nFast = 0;
	strFastSubj.Empty();

	// finding fast subject
	nf = strFest.Find("[f:");
	if (nf >= 0 && nf < strFest.GetLength())
	{
		// ziskava typ postu
		nFast = strFest.GetAt(nf+3) - '0';
		nf2 = strFest.Find("]", nf);
		if (nf2 >= 0)
		{
			strFest.Mid(nf + 5, nf2 - nf - 5, strFastSubj);
		}
		strFest.Delete(nf, strFest.GetLength() - nf);
	}
}
开发者ID:gopa810,项目名称:SamskaraTimes,代码行数:22,代码来源:GCVaisnavaDay.cpp

示例4: ReplaceSub32OrdinalsWithHexForm

void ReplaceSub32OrdinalsWithHexForm( TString& astring )
{
  int sl = astring.Length();
  for( int i=1; i<=sl; i++ )
  {
    if( astring[i] == '\\' )
    {
      astring.Insert( "\\", i );
      i++;
      sl++;
    }
    else
    {
      if( ((unsigned char)astring[i]) < 32 )
      {
        astring.Insert( "\\x" + utils::IntToHex((unsigned char)astring[i],2), i );
        astring.Delete( i+4,1 );
        sl += 3;
        i += 3;
      }
    }
  }
}
开发者ID:Sustak,项目名称:final.utils,代码行数:23,代码来源:csv.cpp


注:本文中的TString::Delete方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。