2019年1月23日
摘要: public static String removeAllBlank(String s){ String result = ""; if(null!=s && !"".equals(s)){ result = s.replaceAll("[ *| *| *|//s*]*", ""); } return result; } 阅读全文
posted @ 2019-01-23 14:14 FeeCy 阅读(280) 评论(0) 推荐(0) 编辑