Exercise 1: Word Separator Write a program that accepts as input a sentence in which all of the words are run together, but the first character of each word is uppercase. Convert the sentence to a string in which the words are separated by spaces and only the first word starts with an uppercase letter. For example the string StopAndSmellTheRoses. would be converted to “Stop and smell the roses.” Exercise 2: replaceSubstring Function Write a function named replaceSubstring. The function should accept three string object arguments. Let’s call them string1, string2, and string3. It should search string1 for all occurrences of string2. When it finds an occurrence of string2, it should replace it with string3. For example, suppose the three arguments have the following values:   string1: “the dog jumped over the fence” string2: “the” string3: “that”

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 3PE
icon
Related questions
Question

 

Exercise 1:

Word Separator

Write a program that accepts as input a sentence in which all of the words are run together, but the first character of each word is uppercase. Convert the sentence to a string in which the words are separated by spaces and only the first word starts with an uppercase letter. For example the string StopAndSmellTheRoses. would be converted to “Stop and smell the roses.”




Exercise 2:

replaceSubstring Function

Write a function named replaceSubstring. The function should accept three string object arguments. Let’s call them string1, string2, and string3. It should search string1 for all occurrences of string2. When it finds an occurrence of string2, it should replace it with string3. For example, suppose the three arguments have the following values:

 

string1: “the dog jumped over the fence”

string2: “the”

string3: “that”

 

With these three arguments, the function would return a string object with the value

“that dog jumped over that fence.” Demonstrate the function in a complete program.

Use C++, the output should look like the image. It is one program, not 2 individual codes. Thank you so much.

Test Case 2 Failed Show what's missing
Which exercise? \n
1 ENTER
Enter a sentence (no spaces, 1st letter of each word is uppercase): \n
ProgrammingIsFun ! ! ! ENTER
Programming is fun!!!\n
\n
\n
Test Case 3 Failed Show what's missing
Which exercise? \n
2 ENTER
Enter the main string: the dog jumped over the fence ENTER
Enter the string to replace: the ENTER
Enter the replacement string: that ENTER
\n
that dog jumped over that fence \n
Transcribed Image Text:Test Case 2 Failed Show what's missing Which exercise? \n 1 ENTER Enter a sentence (no spaces, 1st letter of each word is uppercase): \n ProgrammingIsFun ! ! ! ENTER Programming is fun!!!\n \n \n Test Case 3 Failed Show what's missing Which exercise? \n 2 ENTER Enter the main string: the dog jumped over the fence ENTER Enter the string to replace: the ENTER Enter the replacement string: that ENTER \n that dog jumped over that fence \n
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Character class and its methods
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT