Question: C++ Hello I want to turn the if statement into a while loop to loop through all instances of the provided lookFor string and end

C++

Hello I want to turn the if statement into a while loop to loop through all instances of the provided lookFor string and end when no more can be found. Any assistance would be greatly appreciated

C++ Hello I want to turn the if statement into a while

void replaceAllString(string& str, string lookFor, string replaceWith) { string::size_type idx; idx = str.find(lookFor);

if ( idx != string::npos ); { str.replace(idx,lookFor.size(), replaceWith);

idx = str.find(lookFor); }

return; }

Evoid replaceAllstring(string& str, string lookFor, string replacewith) { string: :size_type idx; idx = str.find(lookFor); if ( idx != string:: npos ); { str.replace(idx, lookFor.size(), replacewith); idx = str.find(lookFor); } return

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!