您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關如何在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中使用正則表達式對注冊頁面進行驗證了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。