雪洗中关村

导航

2018年12月27日 #

正则 函数

摘要: public static String isContainType(String type, String str) { Pattern p = Pattern.compile(type); Matcher m = p.matcher(str); if (m.find()) { return m.group(); ... 阅读全文

posted @ 2018-12-27 10:50 雪洗中关村 阅读(176) 评论(0) 推荐(0)