摘要: public static void main(String[] args) { String a="love234csdn"; String regEx="[^0-9]"; // 匹配所有的非数字 Pattern p = Pattern.compile(regEx); Matcher m = p. 阅读全文
posted @ 2022-07-15 08:58 huanglei2010 阅读(13) 评论(0) 推荐(0) 编辑