Write a recursive string-valued method replace that accepts


Question: Write a recursive, string-valued method, replace, that accepts a string and returns a new string consisting of the original string with each blank replaced with an asterisk (*)

- Replacing the blanks in a string involves:

- Nothing if the string is empty

Otherwise: If the first character is not a blank, simply concatenate it with the result of replacing the rest of the string.

- If the first character IS a blank, concatenate an * with the result of replacing the rest of the string.

Solution Preview :

Prepared by a verified Expert
Basic Computer Science: Write a recursive string-valued method replace that accepts
Reference No:- TGS02343287

Now Priced at $10 (50% Discount)

Recommended (95%)

Rated (4.7/5)