logo Practice-It logo

BJP3 Exercise 6.5: collapseSpaces

Language/Type: Java file processing Scanner
Author: Kimberly Todd (on 2013/04/01)

Write a static method named collapseSpaces that accepts a Scanner representing a file as a parameter and writes that file's text to the console, with multiple spaces or tabs reduced to single spaces between words that appear on the same line. For example, if a Scanner variable named input is reading an input file containing the following text:

four      score   and

seven               years ago         our
            
fathers brought             forth
    on this          continent
a         new
            
nation

then the call collapseSpaces(input); should produce the following output:

four score and
            
seven years ago our
            
fathers brought forth
on this continent
a new
            
nation

Each word is to appear on the same line in output as it appears in the file. Notice that lines can be blank.

Type your solution here:


This is a method problem. Write a Java method as described. Do not write a complete program or class; just the method(s) above.

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.