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位,只能有大小写字母和数字,并且大小写字母和数字都要有。

PHP正则匹配6到16位字符组合(且只能为数字字母下划线)

php验证密码 必须为6-16位字母数字符号组合, 正则表达式 着急,在线等

正则表达式:检测密码由6-20字母和数字组成

正则数字字母字符密码组合校验

java密码正则表达式(可以是纯数字,也可以是纯字母,也可以是数字+字母,6-16 位)