6到20位数字和字母组合 正则表达式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6到20位数字和字母组合 正则表达式相关的知识,希望对你有一定的参考价值。
RT 6到20位数字和字母组合 正则表达式,也就是既要有数字也要有字母 不区分大小写
参考技术A不多说直接上代码
java版
import java.util.regex.Matcher;import java.util.regex.Pattern;
public class ZhengZe
public static void main(String z[])
Pattern pat = Pattern.compile("[\\\\da-zA-Z]6,20");
Pattern patno = Pattern.compile(".*\\\\d.*");
Pattern paten = Pattern.compile(".*[a-zA-Z].*");
String str = "111111111111111111aa";
Matcher mat = pat.matcher(str);
Matcher matno = patno.matcher(str);
Matcher maten = paten.matcher(str);
if(matno.matches()&& maten.matches() && mat.matches())
System.out.println(str);
本回答被提问者采纳 参考技术B [0-9a-zA-Z]6,20
以上是关于6到20位数字和字母组合 正则表达式的主要内容,如果未能解决你的问题,请参考以下文章
正则表达式:要求6-20位,只能有大小写字母和数字,并且大小写字母和数字都要有。