Java使用正則表達式對注冊頁面進行驗證功能實現(xiàn)
更新時間:2016年09月26日 16:20:26 投稿:mrr
本文給大家分享一段有關java使用正則表達式對注冊頁面進行驗證的代碼,代碼比較簡單,非常不錯,感興趣的朋友一起學習吧
本文給大家介紹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使用正則表達式對注冊頁面進行驗證功能實現(xiàn),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
相關文章
js正則表達式實現(xiàn)數(shù)字每隔四位用空格分隔代碼
這篇文章主要介紹了js正則表達式實現(xiàn)數(shù)字每隔四位用空格分隔代碼,需要的朋友可以參考下2016-12-12
Javascript 字符串字節(jié)長度計算函數(shù)代碼與效率分析(for VS 正則)
下面的函數(shù)都是用于計算字符串長度,英文算一個,中文算兩個。效果一樣,效率卻未必一樣,大家可以自行選擇下。2009-12-12

