1
[inline]
Definition at line 128 of file StringParser.h.
References mP, and mText.
00129 { 00130 while ((mP != String::npos) && (--nrToFind >= 0)) 00131 { 00132 mP = mText.find(str, mP); 00133 if (mP != String::npos) 00134 mP += str.size(); 00135 } 00136 }