#include // string_replace1.cpp using namespace std; int main() { string base="This is a test base string strung drung droom "; string str2=" //str2 example //"; string str3=" **str3 sample**"; string str4="## str4 useful ##"; string str5, temp; // function versions used in the same order as described above: cout<<"\n base.length() "<< base.length(); cout<<"\n str2.length() "<< str2.length(); cout<<"\n str3.length() "<< str3.length(); cout<<"\n str4.length() "<< str4.length(); // temp=base; // "this is a test string." cout<<"\n what is orignal temp :\n\t" << temp <