本文给大家介绍java使用正则表达式对注册页面进行验证的代码,代码如下所示:
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(); /* String uname="wangheng"; String passwd="222assAS123"; String repasswd="432Pass123";*/ 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使用正则表达式对注册页面进行验证功能实现,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月18日
2024年11月18日
- 好薇2024《兵哥哥》1:124K黄金母盘[WAV+CUE]
- 胡歌.2006-珍惜(EP)【步升大风】【FLAC分轨】
- 洪荣宏.2014-拼乎自己看【华特】【WAV+CUE】
- 伊能静.1999-从脆弱到勇敢1987-1996精选2CD【华纳】【WAV+CUE】
- 刘亮鹭《汽车DJ玩主》[WAV+CUE][1.1G]
- 张杰《最接近天堂的地方》天娱传媒[WAV+CUE][1.1G]
- 群星《2022年度发烧天碟》无损黑胶碟 2CD[WAV+CUE][1.4G]
- 罗文1983-罗文甄妮-射雕英雄传(纯银AMCD)[WAV+CUE]
- 群星《亚洲故事香港纯弦》雨果UPMAGCD2024[低速原抓WAV+CUE]
- 群星《经典咏流传》限量1:1母盘直刻[低速原抓WAV+CUE]
- 庾澄庆1993《老实情歌》福茂唱片[WAV+CUE][1G]
- 许巍《在别处》美卡首版[WAV+CUE][1G]
- 林子祥《单手拍掌》华纳香港版[WAV+CUE][1G]
- 郑秀文.1997-我们的主题曲【华纳】【WAV+CUE】
- 群星.2001-生命因爱动听电影原创音乐AVCD【MEDIA】【WAV+CUE】