Definition at line 232 of file String.h. Referenced by Impala::Persistency::Locator::Locator(). 00233 { 00234 String::size_type p = src.find(toChar, 0); 00235 if (p == String::npos) 00236 return ""; 00237 if (!includeChar) 00238 p++; 00239 return src.substr(p, src.size() - p); 00240 }
|