LA15_String_Search_and_Replace
Write a program that searches a string in a multi-line string input, and replaces all occurrences of the search string with a replace string. Example: Multi-line Input: Alex is a good student. Programming is fun for Alex. David, Susan, and Alex are good at C# programming. Alex is ambitious to create his/her career in Software Development. Search String: Alex Replace String: Your Name Output:
Your Name is a good student. Programming is fun for Your Name. David, Susan and Your Name are good at C# programming. Your Name is ambitious to create his/her career in Software Development.