Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use regular expressions to validate registration pages in Java

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

这期内容当中小编将会给大家带来有关如何在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中使用正则表达式对注册页面进行验证了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注行业资讯频道。

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report