Definition at line 221 of file String.h. Referenced by Impala::Persistency::Locator::Locator(). 00222 { 00223 String::size_type p = src.find(toChar, 0); 00224 if (p == String::npos) 00225 return ""; 00226 if (includeChar) 00227 p++; 00228 return src.substr(0, p); 00229 }
|