架构师之正则表达式(七)之----------以字母或者数字开头的
程序员文章站
2022-04-01 08:51:11
...
1.前言.
如题.
2.代码
如题.
2.代码
Pattern pattern = Pattern.compile("^([a-z]+|[A-Z]+|[0-9]+)$"); Matcher m = pattern.matcher("fwefw"); System.out.println(m.matches());
上一篇: React中组件的抽象使用方法