3. Title Case
4. Replace All
Write a program which is given a line of text, another line with a "find" string and another line with a "replace"
string. Any part of text which matches the "find" string should be replaced with the "replace" string. Print the
resulting text on the console.
Examples
Input
I am the night. Dark Night! No, not the
knight
night
day
output
I am the day. Dark Night! No, not the
kday
Ако може някой, да асистне, като си прочета входа стандартно:
std::string stringRead() {
std::string line;
getline(std::cin, line);
return line;
}
После, как да го разбия на думи и да сменя точно определено нещо, което искам.
Или още горе да го напълня в istringstream.
Как точно да го направя.
Командата find ли да използвам или делимитър?
Доста ми е сложна тая задача.