Squeeze.java


Below is the syntax highlighted version of Squeeze.java from §5 Strings.


/******************************************************************************
 *  Compilation:  javac Squeeze.java
 *  Execution:    java Squeeze
 *  Dependencies: In.java
 *
 *  Takes a string command line argument and removes adjacent spaces.
 *  
 *  % java Squeeze "this is    a    test"
 *  this is a test
 *
 ******************************************************************************/

public class Squeeze { 
    public static String squeeze(String s) { 
        char[] a = s.toCharArray();
        int n = 1;
        for (int i = 1; i < a.length; i++) { 
            a[n] = a[i];
            if      (a[n]   != ' ') n++;
            else if (a[n-1] != ' ') n++;
        }
        return new String(a, 0, n);
    }


    public static void main(String[] args) { 
        StdOut.println(squeeze(args[0]));
    }

}


Copyright © 2000–2017, Robert Sedgewick and Kevin Wayne.
Last updated: Fri Oct 20 12:50:46 EDT 2017.