Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

String Impala::StringTail ( String  src,
char  toChar,
bool  includeChar 
) [inline]

Definition at line 233 of file String.h.

Referenced by Impala::Application::Util::DoImportAnnoTruth(), Impala::Application::IDo::DoRepositoryExec(), Impala::Application::IDo::DoSystem(), Impala::Application::IDo::IExec(), and Impala::Persistency::Locator::Locator().

00234 {
00235     String::size_type p = src.find(toChar, 0);
00236     if (p == String::npos)
00237         return "";
00238     if (!includeChar)
00239         p++;
00240     return src.substr(p, src.size() - p);
00241 }


Generated on Thu Jan 13 09:13:56 2011 for ImpalaSrc by  doxygen 1.5.1