时间:2021-05-02
本文给大家介绍java使用正则表达式对注册页面进行验证的代码,代码如下所示:
? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 package regex; import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class registered { public static void main(String[] args) { //注册用户 Scanner sc=new Scanner(System.in); System.out.println("请输入用户名:"); String uname=sc.next(); System.out.println("请输入密码:"); String passwd=sc.next(); System.out.println("请输入确认密码:"); String repasswd=sc.next(); boolean b=uname.matches("\\w{3,10}"); //方法一 if(b==true){ Pattern p0=Pattern.compile(".{6,12}");//长度6到12个 Pattern p1=Pattern.compile(".*[A-Z]+");// Pattern p2=Pattern.compile(".*[a-z]+"); Pattern p3=Pattern.compile(".*\\d+"); Matcher m0=p0.matcher(passwd); Matcher m1=p1.matcher(passwd); Matcher m2=p2.matcher(passwd); Matcher m3=p3.matcher(passwd); if(m0.lookingAt()==true&& m1.lookingAt()==true&& m2.lookingAt()==true&& m3.lookingAt()==true){ boolean b2=passwd.matches(repasswd); if(b2){ System.out.println("注册成功!"); }else{ System.out.println("确认密码与密码不同!"); } }else{ System.out.println("密码输入错误!"); } }else{ System.out.println("用户名输入错误!"); } //方法二 Pattern p1=Pattern.compile("[A-Z]+"); Pattern p2=Pattern.compile("[a-z]+"); Pattern p3=Pattern.compile("\\d+"); Matcher m1=p1.matcher(passwd); Matcher m2=p2.matcher(passwd); Matcher m3=p3.matcher(passwd); if(uname.matches("\\w{3,10}")&&passwd.matches(".{6,12}")&&m1.find()&&m2.find()&&m3.find()){ System.out.println("注册成功!"); }else{ System.out.println("注册失败!"); } } }以上所述是小编给大家介绍的Java使用正则表达式对注册页面进行验证功能实现,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
正则表达式验证密码功能在项目中经常被使用到,但是很多朋友还是不大会使用密码正则表达式进行验证,本文小编为大家整理了php密码验证正则表达式、python密码强度
正则表达式常常用来验证各种表单,Java表单注册常用正则表达式验证工具类,常用正则表达式大集合。1.电话号码2.邮编3.QQ4.E-mail5.手机号码6.UR
本教程旨在帮助你驾驭Java正则表达式,同时也帮助我复习正则表达式。什么是正则表达式?正则表达式定义了字符串的模式。正则表达式可以用来搜索、编辑或处理文本。正则
js中的正则表达式比起C#中的正则表达式要弱很多,但基本够用了1定义正则表达式2关于验证的三个这则表达式方法3正则表达式式的转义字符1定义正则表达式在js中定义
推荐阅读:Javascript的表单验证长度Javascript的表单验证-初识正则表达式Javascript的表单验证-揭开正则表达式的面纱JavaScrip