#include <string> using namespace std;报错
新建一个application,空白的unti1,再添加一个unit2
unit 2.h
//---------------------------------------#ifndef Unit2H#define Unit2H//---------------------------------------string &replace_all_distinct(string::size_type s_pos,string &str, const string &old_value, const string &new_value);string &replace_all(string &str, const string &old_value, const string &new_value);#endif
//---------------------------------------#pragma hdrstop#include "Unit2.h"#include <string>using namespace std;//---------------------------------------string &replace_all(string &str, const string &old_value, const string &new_value){ while(true) { string::size_type pos(0); if( (pos=str.find(old_value)) != string::npos ) str.replace(pos,old_value.length(),new_value); else break; } return str;}string replace_all_distinct(string::size_type s_pos, string &str, const string &old_value, const string &new_value){ for(string::size_type pos = s_pos; pos!=string::npos; pos+=new_value.length()) { if( (pos=str.find(old_value,pos)) != string::npos ) str.replace(pos,old_value.length(),new_value); else break; } return str;}#pragma package(smart_init)
#ifndef Unit2H#define Unit2H#include <string>using namespace std;//---------------------------------------string &replace_all_distinct(string::size_type s_pos,string &str, const string &old_value, const string &new_value);string &replace_all(string &str, const string &old_value, const string &new_value);#endif