Definition at line 139 of file StringParser.h. Referenced by Impala::Core::Trec::SearchResult::Load(). 00140 { 00141 while ((mP != String::npos) && (--nrToFind >= 0)) 00142 { 00143 mP = mText.find(toChar, mP); 00144 if ((mP != String::npos) && (nrToFind >= 1)) 00145 mP++; // skip it if looking for more 00146 } 00147 }
|