摘要:
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
阅读(286)
评论(0)
推荐(0)