Here you can find the source of removeWhitespaces(String pString)
public static String removeWhitespaces(String pString)
//package com.java2s; public class Main { public static String removeWhitespaces(String pString) { return pString.replaceAll("[\\s-]*", ""); }/*from w ww .j av a 2s .co m*/ }