摘要: 正则表达式基本用法: 测试代码: @Test public void test01() { String str = "adsfd##4324"; // 创建正则表达式对象 Pattern p = Pattern.compile("\\w+"); // 创建Matcher 对象 Matcher m 阅读全文
posted @ 2020-04-13 01:32 行者老夫 阅读(377) 评论(0) 推荐(0)