#include #include #include #include #include //========================================================================== void replace(std::string& str, const std::string& from, const std::string& to ) { std::string::size_type pos = str.find( from ); while ( pos != std::string::npos ) { str.replace( pos, from.size(), to ); pos = str.find( from, pos+from.size()-1 ); } } //========================================================================== //========================================================================== int main(int argc, char **argv) { if (argc!=4) { for(int i = 1; i < argc; i++){ std::cerr << "|||| "<