本文整理汇总了C++中TString::Empty方法的典型用法代码示例。如果您正苦于以下问题:C++ TString::Empty方法的具体用法?C++ TString::Empty怎么用?C++ TString::Empty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TString
的用法示例。
在下文中一共展示了TString::Empty方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetHrefAndTitleFromLI
/*
* 임의의 nav 노드에서 목차 타이틀과, href 를 추출한다.
* 파라미터 [in] liElement 타이틀과 href 를 추출하고자 하는 nav element
* [out] href 목차의 href
* [out] title 목차명
* 리턴값 true(success) / false(fail)
*/
bool NAVXML::GetHrefAndTitleFromLI(const CXMLDOMElement &liElement, TString<wchar_t> &href, TString<wchar_t> &title)
{
CXMLDOMElement aElem = liElement.SelectSingleNode(USTR("./a"));
if ( aElem )
{
aElem.GetAttribute(USTR("href"), href);
aElem.GetText(title);
return true;
}
CXMLDOMElement spanElem = liElement.SelectSingleNode(USTR("./span"));
if ( spanElem )
{
href.Empty();
spanElem.GetText(title);
return true;
}
href.Empty();
title.Empty();
return false;
}
示例2: ReadPropertyLine
int TFile::ReadPropertyLine(TString &strA, TString &strB)
{
BOOL bVal = FALSE;
UINT rd = 0;
char ch;
strA.Empty();
strB.Empty();
while(ch = getc(m_fHandle), !feof(m_fHandle))
{
rd ++;
if (ch == '=')
{
bVal = TRUE;
}
else if ((ch == 0x0a) || (ch == 0x0d))
{
if (rd > 1)
return 1;
}
else if (bVal == TRUE)
{
strB += ch;
}
else
{
strA += ch;
}
}
return feof(m_fHandle) ? 0 : 1;
}
示例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);
}
}
示例4: GetNextFestival
bool VAISNAVADAY::GetNextFestival(int &i, TString &str)
{
str.Empty();
if (i < 0)
return FALSE;
while(i < festivals.GetLength() && festivals.GetAt(i) != '#')
{
str += festivals.GetAt(i);
i++;
}
if (i < festivals.GetLength())
{
i++;
}
else
{
i = -1;
}
return TRUE;
}