Filter.java


Below is the syntax highlighted version of Filter.java from §5.1 Formal Languages.


/******************************************************************************
 *  Compilation:  javac Filter.java
 *  Execution:    java Filter < input.txt
 *  Dependencies: In.java
 *
 *  Remove all characters that aren't alphanumeric or whitespace.
 *
 ******************************************************************************/

public class Filter {

    public static void main(String[] args) {
        String regexp = "[^\\s0-9a-zA-Z]";  // whitespace or alpha-numeric

        // read input
        In in = new In();
        String input = in.readAll();

        // create and print output
        String output = input.replaceAll(regexp, "");
        StdOut.println(output);
    }

}


Copyright © 2000–2022, Robert Sedgewick and Kevin Wayne.
Last updated: Thu Aug 11 10:31:22 EDT 2022.