replaceMulti method
Implementation
ParamString replaceMulti( String word, String replacement ){
while( true ){
String tmp = str();
replace( word, replacement );
if( tmp == str() ){
break;
}
}
return this;
}
ParamString replaceMulti( String word, String replacement ){
while( true ){
String tmp = str();
replace( word, replacement );
if( tmp == str() ){
break;
}
}
return this;
}