您好,登錄后才能下訂單哦!
小編給大家分享一下Java常用正則表達(dá)式驗(yàn)證類的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
具體如下:
package com.fsti.icop.util.regexp; import java.util.regex.Matcher; import java.util.regex.Pattern; public final class RegExpValidatorUtils { /** * 驗(yàn)證郵箱 * * @param 待驗(yàn)證的字符串 * @return 如果是符合的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean isEmail(String str) { String regex = "^([\\w-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([\\w-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$"; return match(regex, str); } /** * 驗(yàn)證IP地址 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean isIP(String str) { String num = "(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)"; String regex = "^" + num + "\\." + num + "\\." + num + "\\." + num + "$"; return match(regex, str); } /** * 驗(yàn)證網(wǎng)址Url * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsUrl(String str) { String regex = "http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?"; return match(regex, str); } /** * 驗(yàn)證電話號碼 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsTelephone(String str) { String regex = "^(\\d{3,4}-)?\\d{6,8}$"; return match(regex, str); } /** * 驗(yàn)證輸入密碼條件(字符與數(shù)據(jù)同時(shí)出現(xiàn)) * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsPassword(String str) { String regex = "[A-Za-z]+[0-9]"; return match(regex, str); } /** * 驗(yàn)證輸入密碼長度 (6-18位) * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsPasswLength(String str) { String regex = "^\\d{6,18}$"; return match(regex, str); } /** * 驗(yàn)證輸入郵政編號 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsPostalcode(String str) { String regex = "^\\d{6}$"; return match(regex, str); } /** * 驗(yàn)證輸入手機(jī)號碼 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsHandset(String str) { String regex = "^[1]+[3,5]+\\d{9}$"; return match(regex, str); } /** * 驗(yàn)證輸入身份證號 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsIDcard(String str) { String regex = "(^\\d{18}$)|(^\\d{15}$)"; return match(regex, str); } /** * 驗(yàn)證輸入兩位小數(shù) * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsDecimal(String str) { String regex = "^[0-9]+(.[0-9]{2})?$"; return match(regex, str); } /** * 驗(yàn)證輸入一年的12個(gè)月 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsMonth(String str) { String regex = "^(0?[[1-9]|1[0-2])$"; return match(regex, str); } /** * 驗(yàn)證輸入一個(gè)月的31天 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsDay(String str) { String regex = "^((0?[1-9])|((1|2)[0-9])|30|31)$"; return match(regex, str); } /** * 驗(yàn)證日期時(shí)間 * * @param 待驗(yàn)證的字符串 * @return 如果是符合網(wǎng)址格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean isDate(String str) { // 嚴(yán)格驗(yàn)證時(shí)間格式的(匹配[2002-01-31], [1997-04-30], // [2004-01-01])不匹配([2002-01-32], [2003-02-29], [04-01-01]) // String regex = // "^((((19|20)(([02468][048])|([13579][26]))-02-29))|((20[0-9][0-9])|(19[0-9][0-9]))-((((0[1-9])|(1[0-2]))-((0[1-9])|(1\\d)|(2[0-8])))|((((0[13578])|(1[02]))-31)|(((01,3-9])|(1[0-2]))-(29|30)))))$"; // 沒加時(shí)間驗(yàn)證的YYYY-MM-DD // String regex = // "^((((1[6-9]|[2-9]\\d)\\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\\d|3[01]))|(((1[6-9]|[2-9]\\d)\\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\\d|30))|(((1[6-9]|[2-9]\\d)\\d{2})-0?2-(0?[1-9]|1\\d|2[0-8]))|(((1[6-9]|[2-9]\\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-))$"; // 加了時(shí)間驗(yàn)證的YYYY-MM-DD 00:00:00 String regex = "^((((1[6-9]|[2-9]\\d)\\d{2})-(0?[13578]|1[02])-(0?[1-9]|[12]\\d|3[01]))|(((1[6-9]|[2-9]\\d)\\d{2})-(0?[13456789]|1[012])-(0?[1-9]|[12]\\d|30))|(((1[6-9]|[2-9]\\d)\\d{2})-0?2-(0?[1-9]|1\\d|2[0-8]))|(((1[6-9]|[2-9]\\d)(0[48]|[2468][048]|[13579][26])|((16|[2468][048]|[3579][26])00))-0?2-29-)) (20|21|22|23|[0-1]?\\d):[0-5]?\\d:[0-5]?\\d$"; return match(regex, str); } /** * 驗(yàn)證數(shù)字輸入 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsNumber(String str) { String regex = "^[0-9]*$"; return match(regex, str); } /** * 驗(yàn)證非零的正整數(shù) * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsIntNumber(String str) { String regex = "^\\+?[1-9][0-9]*$"; return match(regex, str); } /** * 驗(yàn)證大寫字母 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsUpChar(String str) { String regex = "^[A-Z]+$"; return match(regex, str); } /** * 驗(yàn)證小寫字母 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsLowChar(String str) { String regex = "^[a-z]+$"; return match(regex, str); } /** * 驗(yàn)證驗(yàn)證輸入字母 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsLetter(String str) { String regex = "^[A-Za-z]+$"; return match(regex, str); } /** * 驗(yàn)證驗(yàn)證輸入漢字 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsChinese(String str) { String regex = "^[\u4e00-\u9fa5],{0,}$"; return match(regex, str); } /** * 驗(yàn)證驗(yàn)證輸入字符串 * * @param 待驗(yàn)證的字符串 * @return 如果是符合格式的字符串,返回 <b>true </b>,否則為 <b>false </b> */ public static boolean IsLength(String str) { String regex = "^.{8,}$"; return match(regex, str); } /** * @param regex * 正則表達(dá)式字符串 * @param str * 要匹配的字符串 * @return 如果str 符合 regex的正則表達(dá)式格式,返回true, 否則返回 false; */ private static boolean match(String regex, String str) { Pattern pattern = Pattern.compile(regex); Matcher matcher = pattern.matcher(str); return matcher.matches(); } // 3. 檢查字符串重復(fù)出現(xiàn)的詞 // // private void btnWord_Click(object sender, EventArgs e) // { // System.Text.RegularExpressions.MatchCollection matches = // System.Text.RegularExpressions.Regex.Matches(label1.Text, // // @"\b(?<word>\w+)\s+(\k<word>)\b", // System.Text.RegularExpressions.RegexOptions.Compiled | // System.Text.RegularExpressions.RegexOptions.IgnoreCase); // if (matches.Count != 0) // { // foreach (System.Text.RegularExpressions.Match match in matches) // { // string word = match.Groups["word"].Value; // MessageBox.Show(word.ToString(),"英文單詞"); // } // } // else { MessageBox.Show("沒有重復(fù)的單詞"); } // // // } // // 4. 替換字符串 // // private void button1_Click(object sender, EventArgs e) // { // // string strResult = // System.Text.RegularExpressions.Regex.Replace(textBox1.Text, // @"[A-Za-z]\*?", textBox2.Text); // MessageBox.Show("替換前字符:" + "\n" + textBox1.Text + "\n" + "替換的字符:" + "\n" // + textBox2.Text + "\n" + // // "替換后的字符:" + "\n" + strResult,"替換"); // // } // // 5. 拆分字符串 // // private void button1_Click(object sender, EventArgs e) // { // //實(shí)例: 甲025-8343243乙0755-2228382丙029-32983298389289328932893289丁 // foreach (string s in // System.Text.RegularExpressions.Regex.Split(textBox1.Text,@"\d{3,4}-\d*")) // { // textBox2.Text+=s; //依次輸出 "甲乙丙丁" // } // // } }
以上是“Java常用正則表達(dá)式驗(yàn)證類的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。