private String replaceBlank(String s) { String result= null; if (s == null) { return result; } else { Pattern p = Pattern.compile("\\s*|\t|\r|\n"); Matcher m = p.matcher(str); result= m.replaceAll(""); return result; }
}
private String replaceBlank(String s) { String result= null; if (s == null) { return result; } else { Pattern p = Pattern.compile("\\s*|\t|\r|\n"); Matcher m = p.matcher(str); result= m.replaceAll(""); return result; }
}