#include <string>
#include <iostream>
#include <regex>
using namespace std;
signed main(){
setlocale(LC_ALL, "Rus");
string str;
cout << "Введите строку: ";
getline(cin, str);
str = regex_replace(str, regex("1"), "one");
cout << "Изменённая строка: " << str;
return 0;
}
#include <string>
#include <iostream>
#include <regex>
using namespace std;
signed main(){
setlocale(LC_ALL, "Rus");
string str;
cout << "Введите строку: ";
getline(cin, str);
str = regex_replace(str, regex("1"), "one");
cout << "Изменённая строка: " << str;
return 0;
}