#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;
}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#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;
}