正则 函数
摘要:
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)
浙公网安备 33010602011771号