Searched refs:withThis (Results 1 – 1 of 1) sorted by relevance
439 …ol replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis );8577 …l replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis ) { in replaceInPlace() argument8582 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace()8583 if( i < str.size()-withThis.size() ) in replaceInPlace()8584 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()