摘要: 一、去除空格,回车,换行符,制表符 // 去除空格,回车,换行符,制表符 public static String replaceBlank(String str) { String dest = ""; if (str != null) { Pattern p = Pattern.compile( 阅读全文
posted @ 2017-04-20 14:17 新宇泽起 阅读(134) 评论(0) 推荐(0) 编辑