java的正則在java應用中常常會遇到,說到正則是java的重中之重,挺重要的一個知識點,小猿圈詳細闡述一下java正則的幾種用法,想要了解的,能夠看一下小編的文章。java
如下是正則模板:正則表達式
經常使用正則表達式bash
匹配特定數字:ui
^[1-9]\d*$ //匹配正整數編碼
^-[1-9]\d*$ //匹配負整數spa
^-?[1-9]\d*$ //匹配整數code
^[1-9]\d*|0$ //匹配非負整數(正整數 + 0)regexp
^-[1-9]\d*|0$ //匹配非正整數(負整數 + 0)ip
^[1-9]\d*\.\d*|0\.\d*[1-9]\d*$ //匹配正浮點數ci
^-([1-9]\d*\.\d*|0\.\d*[1-9]\d*)$ //匹配負浮點數
^-?([1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0)$ //匹配浮點數
^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$ //匹配非負浮點數(正浮點數 + 0)
(-([1-9]\d*\.\d*|0\.\d*[1-9]\d*))|0?\.0+|0$ //匹配非正浮點數(負浮點數 + 0)
匹配特定字符串:
^[A-Za-z]+$ //匹配由26個英文字母組成的字符串
^[A-Z]+$ //匹配由26個英文字母的大寫組成的字符串
^[a-z]+$ //匹配由26個英文字母的小寫組成的字符串
^[A-Za-z0-9]+$ //匹配由數字和26個英文字母組成的字符串
^\w+$ //匹配由數字、26個英文字母或者下劃線組成的字符串
用戶名:/^[a-z0-9_-]{3,16}$/
密碼:/^[a-z0-9_-]{6,18}$/
十六進制值:/^#?([a-f0-9]{6}|[a-f0-9]{3})$/
電子郵箱:/^([a-z0-9_\.-]+)@([\da-z\.-]+)\.([a-z\.]{2,6})$/
URL:/^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/
IP 地址:/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/
HTML 標籤:/^<([a-z]+)([^<]+)*(?:>(.*)<\/\1>|\s+\/>)$/
Unicode編碼中的漢字範圍:/^[u4e00-u9fa5],{0,}$/
匹配中文字符的正則表達式: [\u4e00-\u9fa5]
評註:匹配中文還真是個頭疼的事,有了這個表達式就好辦了
匹配雙字節字符(包括漢字在內):[^\x00-\xff]
評註:能夠用來計算字符串的長度(一個雙字節字符長度計2,ASCII字符計1)
匹配空白行的正則表達式:\n\s*\r
評註:能夠用來刪除空白行
匹配HTML標記的正則表達式:<(\S*?)[^>]*>.*?</\1>|<.*? />
評註:網上流傳的版本太糟糕,上面這個也僅僅能匹配部分,對於複雜的嵌套標記依舊無能爲力
匹配首尾空白字符的正則表達式:^\s*|\s*$
評註:能夠用來刪除行首行尾的空白字符(包括空格、製表符、換頁符等等),很是有用的表達式
匹配Email地址的正則表達式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
評註:表單驗證時很實用
匹配網址URL的正則表達式:[a-zA-z]+://[^\s]*
評註:網上流傳的版本功能頗有限,上面這個基本能夠知足需求
匹配賬號是否合法(字母開頭,容許5-16字節,容許字母數字下劃線):^[a-zA-Z][a-zA-Z0-9_]{4,15}$
評註:表單驗證時很實用
匹配國內電話號碼:\d{3}-\d{8}|\d{4}-\d{7}
評註:匹配形式如 0511-4405222 或 021-87888822
匹配騰訊QQ號:[1-9][0-9]{4,}
評註:騰訊QQ號從10000開始
匹配中國大陸郵政編碼:[1-9]\d{5}(?!\d)
評註:中國大陸郵政編碼爲6位數字
匹配ip地址:\d+\.\d+\.\d+\.\d+
評註:提取ip地址時有用
網址(URL) [a-zA-z]+://[^\s]*
IP地址(IP Address) ((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)
電子郵件(Email) \w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
QQ號碼 [1-9]\d{4,}
HTML標記(包含內容或自閉合) <(.*)(.*)>.*<\/\1>|<(.*) \/>
密碼(由數字/大寫字母/小寫字母/標點符號組成,四種都必有,8位以上) (?=^.{8,}$)(?=.*\d)(?=.*\W+)(?=.*[A-Z])(?=.*[a-z])(?!.*\n).*$
日期(年-月-日) (\d{4}|\d{2})-((0?([1-9]))|(1[1|2]))-((0?[1-9])|([12]([1-9]))|(3[0|1]))
日期(月/日/年) ((0?[1-9]{1})|(1[1|2]))/(0?[1-9]|([12][1-9])|(3[0|1]))/(\d{4}|\d{2})
時間(小時:分鐘, 24小時制) ((1|0?)[0-9]|2[0-3]):([0-5][0-9])
漢字(字符) [\u4e00-\u9fa5]
中文及全角標點符號(字符) [\u3000-\u301e\ufe10-\ufe19\ufe30-\ufe44\ufe50-\ufe6b\uff01-\uffee]
中國大陸固定電話號碼 (\d{4}-|\d{3}-)?(\d{8}|\d{7})
中國大陸手機號碼 1\d{10}
中國大陸郵政編碼 [1-9]\d{5}
中國大陸身份證號(15位或18位) \d{15}(\d\d[0-9xX])?
非負整數(正整數或零) \d+
正整數 [0-9]*[1-9][0-9]*
負整數 -[0-9]*[1-9][0-9]*
整數 -?\d+
小數 (-?\d+)(\.\d+)?
詳細事例說一下:
package com.fsti.icop.util.regexp;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public final class RegExpValidatorUtils {
/**
* 驗證郵箱
*
* @param 待驗證的字符串
* @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);
}
/**
* 驗證IP地址
*
* @param 待驗證的字符串
* @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);
}
/**
* 驗證網址Url
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsUrl(String str) {
String regex = "http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?";
return match(regex, str);
}
/**
* 驗證電話號碼
*
* @param 待驗證的字符串
* @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);
}
/**
* 驗證輸入密碼條件(字符與數據同時出現)
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsPassword(String str) {
String regex = "[A-Za-z]+[0-9]";
return match(regex, str);
}
/**
* 驗證輸入密碼長度 (6-18位)
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsPasswLength(String str) {
String regex = "^\\d{6,18}$";
return match(regex, str);
}
/**
* 驗證輸入郵政編號
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsPostalcode(String str) {
String regex = "^\\d{6}$";
return match(regex, str);
}
/**
* 驗證輸入手機號碼
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsHandset(String str) {
String regex = "^[1]+[3,5]+\\d{9}$";
return match(regex, str);
}
/**
* 驗證輸入身份證號
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsIDcard(String str) {
String regex = "(^\\d{18}$)|(^\\d{15}$)";
return match(regex, str);
}
/**
* 驗證輸入兩位小數
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsDecimal(String str) {
String regex = "^[0-9]+(.[0-9]{2})?$";
return match(regex, str);
}
/**
* 驗證輸入一年的12個月
*
* @param 待驗證的字符串
* @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);
}
/**
* 驗證輸入一個月的31天
*
* @param 待驗證的字符串
* @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);
}
/**
* 驗證日期時間
*
* @param 待驗證的字符串
* @return 若是是符合網址格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean isDate(String str) {
// 嚴格驗證時間格式的(匹配[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)))))$";
// 沒加時間驗證的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-))$";
// 加了時間驗證的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);
}
/**
* 驗證數字輸入
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsNumber(String str) {
String regex = "^[0-9]*$";
return match(regex, str);
}
/**
* 驗證非零的正整數
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsIntNumber(String str) {
String regex = "^\\+?[1-9][0-9]*$";
return match(regex, str);
}
/**
* 驗證大寫字母
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsUpChar(String str) {
String regex = "^[A-Z]+$";
return match(regex, str);
}
/**
* 驗證小寫字母
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsLowChar(String str) {
String regex = "^[a-z]+$";
return match(regex, str);
}
/**
* 驗證驗證輸入字母
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsLetter(String str) {
String regex = "^[A-Za-z]+$";
return match(regex, str);
}
/**
* 驗證驗證輸入漢字
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsChinese(String str) {
String regex = "^[\u4e00-\u9fa5],{0,}$";
return match(regex, str);
}
/**
* 驗證驗證輸入字符串
*
* @param 待驗證的字符串
* @return 若是是符合格式的字符串,返回 <b>true </b>,不然爲 <b>false </b>
*/
public static boolean IsLength(String str) {
String regex = "^.{8,}$";
return match(regex, str);
}
/**
* @param regex
* 正則表達式字符串
* @param str
* 要匹配的字符串
* @return 若是str 符合 regex的正則表達式格式,返回true, 不然返回 false;
*/
private static boolean match(String regex, String str) {
Pattern pattern = Pattern.compile(regex);
Matcher matcher = pattern.matcher(str);
return matcher.matches();
}
// 3. 檢查字符串重複出現的詞
//
// 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("沒有重複的單詞"); }
//
//
// }
//
// 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)
// {
// //實例: 甲025-8343243乙0755-2228382丙029-32983298389289328932893289丁
// foreach (string s in
// System.Text.RegularExpressions.Regex.Split(textBox1.Text,@"\d{3,4}-\d*"))
// {
// textBox2.Text+=s; //依次輸出 "甲乙丙丁"
// }
//
// }
}
複製代碼
你們學會了嗎?這篇對正則深刻剖析了一下,講的很細很明白,但願你們看後真正學到了,小編的目的也就達到了,若是感受不錯的,能夠在小猿圈看一下其餘的講解,但願你會收穫更多。