3. Replace string

3. Replace string#

Write an program which inputs a string and find the wanted character string, then replace it with your given string, then output the result. If the wanted character string appears more than once, replace them all.

Restriction: You are not allowed to use any content inside <string>, <cstring>, <string.h> or <algorithm>.

Note: The length of the wanted character string and the given string may be different.

For example,

1input:
2  string: C++11 is like a new language.
3  find: is
4  replace: was
5
6output:
7  C++11 was like a new language.