常用的正则表达式

java中正则验证输入的字符串是数字(整数,小数):
//判断是否数字
public static boolean isInteger(String str) {
// Pattern pattern = Pattern.compile("1?[\d]* " ) ; 整 数 P a t t e r n p a t t e r n = P a t t e r n . c o m p i l e ( " [ + − ] ? d + ( . d + ) ? ");整数 Pattern pattern = Pattern.compile("^[+-]?\\d+(\\.\\d+)? ");Patternpattern=Pattern.compile("[+]?d+(.d+)?"); 整数和小数
return pattern.matcher(str).matches();
}

“^\d+ " / / 非 负 整 数 ( 正 整 数 + 0 ) " [ 0 − 9 ] ∗ [ 1 − 9 ] [ 0 − 9 ] ∗ " //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]* "//+0"[09][19][09]” //正整数
“^((-\d+)|(0+)) " / / 非 正 整 数 ( 负 整 数 + 0 ) " − [ 0 − 9 ] ∗ [ 1 − 9 ] [ 0 − 9 ] ∗ " //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]* "//+0"[09][19][09]” //负整数
“^-?\d+KaTeX parse error: Expected group after '^' at position 10: " //整数 "^̲\d+(\.\d+)?” //非负浮点数(正浮点数 + 0)
“^(([0-9]+.[0-9][1-9][0-9])|([0-9][1-9][0-9].[0-9]+)|([0-9][1-9][0-9]))KaTeX parse error: Expected 'EOF', got '\d' at position 16: " //正浮点数 "^((-\̲d̲+(\.\d+)?)|(0+(…” //非正浮点数(负浮点数 + 0)
“^(-(([0-9]+.[0-9][1-9][0-9])|([0-9][1-9][0-9].[0-9]+)|([0-9][1-9][0-9])))KaTeX parse error: Expected 'EOF', got '\d' at position 16: " //负浮点数 "^(-?\̲d̲+)(\.\d+)?” //浮点数
2+ " / / 由 26 个 英 文 字 母 组 成 的 字 符 串 " [ A − Z ] + " //由26个英文字母组成的字符串 "^[A-Z]+ "//26"[AZ]+” //由26个英文字母的大写组成的字符串
3+ " / / 由 26 个 英 文 字 母 的 小 写 组 成 的 字 符 串 " [ A − Z a − z 0 − 9 ] + " //由26个英文字母的小写组成的字符串 "^[A-Za-z0-9]+ "//26"[AZaz09]+” //由数字和26个英文字母组成的字符串
“^\w+KaTeX parse error: Expected 'EOF', got '\w' at position 32: …者下划线组成的字符串 "^[\̲w̲-]+(\.[\w-]+)*@…” //email地址
4+://(\w+(-\w+))(.(\w+(-\w+)))(?\S)? " / / u r l / ( d 2 ∣ d 4 ) − ( ( 0 ( [ 1 − 9 ] 1 ) ) ∣ ( 1 [ 1 ∣ 2 ] ) ) − ( ( [ 0 − 2 ] ( [ 1 − 9 ] 1 ) ) ∣ ( 3 [ 0 ∣ 1 ] ) ) " //url /^(d{2}|d{4})-((0([1-9]{1}))|(1[1|2]))-(([0-2]([1-9]{1}))|(3[0|1])) "//url/(d2d4)((0([19]1))(1[12]))(([02]([19]1))(3[01]))/ // 年-月-日
/^((0([1-9]{1}))|(1[1|2]))/((0-2)|(3[0|1]))/(d{2}|d{4}) / / / 月 / 日 / 年 " ( [ w − . ] + ) @ ( ( [ [ 0 − 9 ] 1 , 3 . [ 0 − 9 ] 1 , 3 . [ 0 − 9 ] 1 , 3 . ) ∣ ( ( [ w − ] + . ) + ) ) ( [ a − z A − Z ] 2 , 4 ∣ [ 0 − 9 ] 1 , 3 ) ( ] ? ) / // 月/日/年 "^([w-.]+)@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.)|(([w-]+.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(]?) /////"([w.]+)@(([[09]1,3.[09]1,3.[09]1,3.)(([w]+.)+))([azAZ]2,4[09]1,3)(]?)” //Emil
“(d±)?(d{4}-?d{7}|d{3}-?d{8}|^d{7,8})(-d+)?” //电话号码
“^(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5]).(d{1,2}|1dd|2[0-4]d|25[0-5])$” //IP地址


  1. -\+ ↩︎

  2. A-Za-z ↩︎

  3. a-z ↩︎

  4. a-zA-z ↩︎

你可能感兴趣的:(常用的正则表达式)