public class RemoveWhiteSpace { public String remvoeWhiteSpaceFromString(String strVal) { return strVal.deleteWhitespace(); } }