Here you can find the source of removeSpaces(String string)
private static String removeSpaces(String string)
//package com.java2s; /**// w w w.j av a 2 s .c o m * Source obtained from crypto-gwt. Apache 2 License. * https://code.google.com/p/crypto-gwt/source/browse/crypto-gwt/src/main/java/com/googlecode/ * cryptogwt/util/ByteArrayUtils.java */ public class Main { private static String removeSpaces(String string) { string = string.replaceAll("\\s+", ""); return string; } }