摘要: 1 public static String removeStr(String src, String str) { 2 if (src == null || str == null) return src; 3 int idx = src.indexOf(str); 4 if (idx == -1) return src; 5 ... 阅读全文
posted @ 2016-09-06 19:08 wq920 阅读(7643) 评论(1) 推荐(0) 编辑