Here you can find the source of collapseWhiteSpace(final String s)
final public static String collapseWhiteSpace(final String s)
//package com.java2s; // License as published by the Free Software Foundation; either public class Main { final public static String collapseWhiteSpace(final String s) { return s.replaceAll("[\\s]+", " "); }//w w w . j a v a 2s .c o m }