Definition at line 150 of file StringParser.h.
References mP, and mText.
00151 {
00152 while ((mP != String::npos) && (--nrToFind >= 0))
00153 {
00154 mP = mText.find(toStr, mP);
00155 if ((mP != String::npos) && (nrToFind >= 1))
00156 mP += toStr.size();
00157 }
00158 }