Question: Write the function processName ( ). It's input is a full name in the form (First MI. Last). Your job is to use string member



Write the function processName ( ). It's input is a full name in the form (First MI. Last). Your job is to use string member functions to break the name into the first name, last name and middle initial, and return the processed name in the form "Last, First MI.". Use the string member functions substr(), find(), rfind(), find_first_not_of(), find_last_not_of() and at() to solve this problem. You may assume: that every name will have exactly one word for the first and last names and a single character, followed by a period for the middle initial. There will be at least one space separating each of the portions of the input name, but there may be more spaces. Complete the following file: main.cpp #include
Step by Step Solution
There are 3 Steps involved in it
To address the issue with handling multiple spaces we can process the string by manually using strin... View full answer
Get step-by-step solutions from verified subject matter experts
