public static String removeAllBlank(String s){
String result = "";
if(null!=s && !"".equals(s)){
result = s.replaceAll("[ *| *| *|//s*]*", "");
}
return result;
}

 

posted on 2019-01-23 14:14  FeeCy  阅读(279)  评论(0编辑  收藏  举报