|
|
目录
& l% |- ]8 o9 [" D1 P0 W, Q
5 Z. D& ~1 h9 ~+ x9 I8 p7 M1 V5 I& Y D h, t
- 写在前面) G/ g7 h$ e4 ]' t, m% S
- 1、整数3 @3 o+ ~+ k/ N) b7 r ?1 p' c% l
- 2、正整数4 E" a2 B6 t# o5 @, E0 R! A
- 3、负整数
6 a) @9 K. V. p8 @ - 4、数字
) I7 x2 r/ y4 D+ K2 f m - 5、正数(正整数 + 0)
; ~* }& M- N- X- |* x2 ]! W' E - 6、负数(负整数 + 0)
4 c. d0 s+ ]; i- D: { - 7、浮点数
' J' B7 X$ r& `" \ - 8、正浮点数# ^3 {$ [, c6 z d) }
- 9、负浮点数, t6 p$ o# C2 @4 Z$ i/ |% m
- 10、浮点数
) r6 r+ @( S# l# M - 11、非负浮点数(正浮点数 + 0) @. f# \ h" B$ C- d! m
- 12、非正浮点数(负浮点数 + 0)0 H5 I5 k8 J# H5 Q3 s% q) D8 G# X
- 13、邮箱地址
, X! g' X6 {( C7 o! w- | - 14、颜色值匹配
/ _, d# A% D% s* H - 15、url匹配
1 K% ` L) N$ W( y* N# @, }8 c7 N - 16、纯仅中文字符' _7 h8 p. e& t, S0 d9 i
- 17、仅ACSII字符
4 x8 U! V$ ~& v# J. L# L+ ` - 18、邮政编码* D2 I; a1 G2 j% q/ n1 c
- 19、国内手机号码
: [) {" o( ?6 o3 R - 20、IP V4 地址3 I( Z! `! H/ p: R+ f* D
- 21、非空字符
7 ]+ M& L# ~2 c$ R$ v - 22、图片后缀
) `; |% b8 J6 Y, Y: Q - 23、音频后缀
; L' E! B/ q6 n - 24、视频后缀. v3 u. I0 \& `/ E# [1 M7 U
- 25、压缩文件后缀
, ~) X3 a( _3 J1 i3 R - 26、日期格式
! Z7 G6 c; m* O6 M- @0 @ - 27、日期和时间格式
[3 \! m# C' ^- J2 k1 E* o: E - 28、QQ号码* X4 k N. W) w8 ]' J R
- 29、电话号码的函数(包括验证国内区号,国际区号,分机号)& p: }- l( a& T' D& a
- 30、用户名注册, X; {* L+ m/ I7 F' a
- 31、字母数字组合1 s: n' T' v; ^1 @8 w' }
- 32、纯字母, g! I7 V. T3 ^5 y. Y
- 33、纯大写字母4 s* Q+ G0 _) k! u2 T) W
- 34、纯小写字母5 r1 ?# E$ j- a3 V) v4 D
- 35、第二代身份证号码匹配
0 R M3 i4 v, T0 @$ r - 36、数字或字母
' C7 h Y- F Z' [, ]0 l, E! V; j
2 o! o' t. ^7 M写在前面
$ z& E' N- d" P" J/ D J7 m4 Y+ X0 i: i& ^
我们在日常的Java开发中,经常需要处理一些字符串,这个时候正则表达式是非常有用的。几乎在所有的编程语言中都支持正则表达式。以下我将压箱底多年的干货搬出来给大家参考,都是我们日常使用频次比较高的正则表达式,希望能能大大提高你的工作效率。如果本文对大家有帮助,大家可以关注“Tom弹架构”,后续会连载正则表达式的基础知识。0 O1 Z) F& _8 A. [; o
! }6 u2 g* P1 {2 a; M7 R/ ?1、整数
8 ~, v( Q" m! n/ C" |3 S
, h/ D C3 Y8 ^- k: c# e1 O! K - public static final String intege = "^-?[1-9]\\d*$/"; //整数 /** 正例 */ System.out.println(Pattern.matches(intege,"123")); // true System.out.println(Pattern.matches(intege,"-123")); // true /** 反例 */ System.out.println(Pattern.matches(intege,"abc")); // false System.out.println(Pattern.matches(intege,"0")); // false
复制代码 2、正整数0 M# @" t# b/ ^+ d5 I
3 y9 U0 p0 l5 m0 F# S: J7 H
 - public static final String intege1 = "^[1-9]\\d*$/"; //正整数 // 正例 System.out.println(Pattern.matches(intege1,"123")); // true // 反例 System.out.println(Pattern.matches(intege1,"-123")); // false System.out.println(Pattern.matches(intege1,"0")); // false
复制代码 3、负整数; q9 |4 Z) R5 g' ~
: R: c+ F& }* s$ E* ~ - public static final String intege2 = "^-[1-9]\\d*$/"; //负整数 // 正例 System.out.println(Pattern.matches(intege2,"-123")); // true // 反例 System.out.println(Pattern.matches(intege2,"123")); // false System.out.println(Pattern.matches(intege2,"0")); // false
复制代码 4、数字* A( |; L; t' B8 `% T
' t3 k" }$ J! v7 z, V) ~9 A; @: c- j
 - public static final String num = "^([+-]?)\\d*\\.?\\d+$/"; //数字 // 正例 System.out.println(Pattern.matches(num,"123")); // true System.out.println(Pattern.matches("0")); // true // 反例 System.out.println(Pattern.matches(num,"a123")); // false
复制代码 5、正数(正整数 + 0)/ `" g+ N- L1 A( H" c/ L M& S
- public static final String num1 = "^[1-9]\\d*|0$/"; //正数(正整数 + 0) // 正例 System.out.println(Pattern.matches(num1,"123")); // true System.out.println(Pattern.matches(num1,"0")); // true // 反例 System.out.println(Pattern.matches(num1,"-123")); // false
复制代码 6、负数(负整数 + 0)
: o7 d' D+ ^% d2 V. z% U* l; h/ O6 `8 F' O
- public static final String num2 = "^-[1-9]\\d*|0$/"; //负数(负整数 + 0) // 正例 System.out.println(Pattern.matches(num2,"-123")); // true System.out.println(Pattern.matches(num2,"0")); // true // 反例 System.out.println(Pattern.matches(num2,"123")); // false
复制代码 7、浮点数
8 Y( N2 O1 N; N2 f* O3 y( [+ ?3 Z$ {" v( @
- public static final String decmal = "^([+-]?)\\d*\\.\\d+$/"; //浮点数 // 正例 System.out.println(Pattern.matches(decmal,"-0.1")); // true System.out.println(Pattern.matches(decmal,"0.1")); // true // 反例 System.out.println(Pattern.matches(decmal,"a.b")); // false
复制代码 8、正浮点数
" V: {' ?. y" q) n* }/ y. u' z D
 - public static final String decmal1 = "^[1-9]\\d*.\\d*|0.\\d*[1-9]\\d*$"; //正浮点数 // 正例 System.out.println(Pattern.matches(decmal1,"0.1")); // true // 反例 System.out.println(Pattern.matches(decmal1,"-0.1")); // false
复制代码 9、负浮点数
0 D7 o1 u! @, V1 _
" o6 n+ _# k- l+ y% Q- public static final String decmal2 = "^-([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*)$"; //负浮点数 // 正例 System.out.println(Pattern.matches(decmal2,"-0.1")); // true // 反例 System.out.println(Pattern.matches(decmal2,"0.1")); // false
复制代码 10、浮点数
3 y" a2 @2 r3 L( w G0 O% o4 s* t& i+ d$ N5 T5 I% Q& l9 X
 - public static final String decmal3 = "^-?([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*|0?.0+|0)$";//浮点数 // 正例 System.out.println(Pattern.matches(decmal3,"-0.1")); // true System.out.println(Pattern.matches(decmal3,"0.1")); // true // 反例 System.out.println(Pattern.matches(decmal3,"a.b")); // false
复制代码 11、非负浮点数(正浮点数 + 0)
4 l1 P5 ]& S. N w+ b
9 Q% O6 q2 j7 S: h; r- public static final String decmal4 = "^[1-9]\\d*.\\d*|0.\\d*[1-9]\\d*|0?.0+|0$"; //非负浮点数(正浮点数 + 0) // 正例 System.out.println(Pattern.matches(decmal4,"0.1")); // true // 反例 System.out.println(Pattern.matches(decmal4,"-0.1")); // false
复制代码 12、非正浮点数(负浮点数 + 0)
0 A$ y! O) l: e2 r7 p2 o+ l1 F9 X+ H+ z$ f( f% X' W. Y
- public static final String decmal5 = "^(-([1-9]\\d*.\\d*|0.\\d*[1-9]\\d*))|0?.0+|0$"; //非正浮点数(负浮点数 + 0) // 正例 System.out.println(Pattern.matches(decmal5,"-0.1")); // true // 反例 System.out.println(Pattern.matches(decmal5,"0.1")); // false
复制代码 13、邮箱地址2 _: z O& t9 U/ j
7 u0 A, h) |$ N
- public static final String email = "^\\w+((-\\w+)|(\\.\\w+))*\\@[A-Za-z0-9]+((\\.|-)[A-Za-z0-9]+)*\\.[A-Za-z0-9]+$"; //邮件 // 正例 System.out.println(Pattern.matches(email,"tom@gupaoedu.com")); // true // 反例 System.out.println(Pattern.matches(email,"tom.gupaoedu.com")); // false
复制代码 14、颜色值匹配
; G! ~! R1 r1 X- I; I u1 A# f) D- k0 _7 |
 - public static final String color = "^[a-fA-F0-9]{6}$"; //颜色 // 正例 System.out.println(Pattern.matches(color,"ffffff")); // true System.out.println(Pattern.matches(color,"FFFFFF")); // true // 反例 System.out.println(Pattern.matches(color,"#FFFFFF")); // false System.out.println(Pattern.matches(color,"white")); // false
复制代码 15、url匹配
4 o% X4 j: k7 H' w- ~ j8 z M
- }! W2 f+ k n5 W1 @2 w- public static final String url = "^http[s]?:\\/\\/([\\w-]+\\.)+[\\w-]+([\\w-.\\/?%&=]*)?$"; //url // 正例 System.out.println(Pattern.matches(url,"http://www.xxx.com")); // true System.out.println(Pattern.matches(url,"https://www.xxx.com")); // true System.out.println(Pattern.matches(url,"www.xxx.com")); // true // 反例 System.out.println(Pattern.matches(url,"abcd")); // false
复制代码 16、纯仅中文字符
" W* O8 B7 Y9 y4 V& s G
" e4 {! J) o+ i+ _4 ^4 ]6 S- I: d0 } - public static final String chinese = "^[\\u4E00-\\u9FA5\\uF900-\\uFA2D]+$"; //仅中文 // 正例 System.out.println(Pattern.matches(chinese,"汤姆弹架构")); // true // 反例 System.out.println(Pattern.matches(chinese,"Tom弹架构")); // false
复制代码 17、仅ACSII字符
7 y2 d% u( ]% L# q+ N7 O3 M" i0 o q, s+ [- g0 v
 - public static final String ascii = "^[\\x00-\\xFF]+$"; //仅ACSII字符 // 正例 System.out.println(Pattern.matches(ascii,"abc123")); // true // 反例 System.out.println(Pattern.matches(ascii,"にそ①②③")); // false
复制代码 18、邮政编码
0 I7 {) n; A% I" h6 Z. O& j: |) C. i: e; H
 - public static final String zipcode = "^\\d{6}$"; //邮编 // 正例 System.out.println(Pattern.matches(zipcode,"100000")); // true // 反例 System.out.println(Pattern.matches(zipcode,"1000000")); // false
复制代码 19、国内手机号码
* D( [2 R1 G, B' w e
1 P# l2 C, b# t7 }! b3 ^; j- public static final String mobile = "^(13|15|16|17|18)[0-9]{9}$"; //手机 // 正例 System.out.println(Pattern.matches(zipcode,"13800138000")); // true // 反例 System.out.println(Pattern.matches(zipcode,"19900010002")); // false
复制代码 20、IP V4 地址
1 z; Z2 C7 {/ F, d* g- `" e
7 X" R. z* X" V- public static final String ip4 = "^(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)\\.(25[0-5]|2[0-4]\\d|[0-1]\\d{2}|[1-9]?\\d)$"; //ip地址 // 正例 System.out.println(Pattern.matches(zipcode,"127.0.0.1")); // true // 反例 System.out.println(Pattern.matches(zipcode,"aa.bb.cc.dd")); // false
复制代码 21、非空字符/ Z" L+ `' u' O3 q) r- R# C5 [3 A* ^
0 ^8 S. [0 }6 \( d: k9 u
- public static final String notempty = "^\\S+$"; //非空 // 正例 System.out.println(Pattern.matches(notempty," abc ")); // true // 反例 System.out.println(Pattern.matches(notempty,"")); // false
复制代码 22、图片后缀
3 q3 }5 v- @5 C# V4 a; T3 N6 J
' I0 ~& w. r, F V3 c - public static final String picture = "(.*)\\.(jpg|bmp|gif|ico|pcx|jpeg|tif|png|raw|tga|JPG|BMP|GIF|ICO|PCX|JPEG|TIF|PNG|RAW|TGA)$"; //图片 // 正例 System.out.println(Pattern.matches(picture,"tom.jpg")); // true // 反例 System.out.println(Pattern.matches(picture,"tom.txt"")); // false
复制代码 23、音频后缀
$ i+ C6 }4 Y6 c; M2 G M( D" R% S3 x7 e- B3 u; N
- public static final String audio = "(.*)\\.(mp3|wma|mid|midi|wav|vqf|MP3|WMA|MID|MIDI|WAV|VQF)$"; //音频 // 正例 System.out.println(Pattern.matches(audio,"tom.mp3")); // true // 反例 System.out.println(Pattern.matches(audio,"tom.txt"")); // false
复制代码 24、视频后缀" ]' d* ?) f( R& _- H H' A" G
" s) H, ]+ B3 C5 R1 L1 Y1 x- public static final String video = "(.*)\\.(rm|3gp|mp4|rmvb|avi|wmv|flv|vob|exe|mkv|swf|RM|3GP|MP4|RMVB|AVI|WMV|FLV|VOB|EXE|MKV|SWF)$"; // 视频格式 // 正例 System.out.println(Pattern.matches(video,"tom.mp4")); // true // 反例 System.out.println(Pattern.matches(video,"tom.txt"")); // false
复制代码 25、压缩文件后缀1 l% W0 s" F6 j R! B+ Z
, y+ u4 A4 a4 B- O6 A/ Q- public static final String rar = "(.*)\\.(rar|zip|7zip|tgz|RAR|ZIP|7ZIP|TGZ)$"; //压缩文件 // 正例 System.out.println(Pattern.matches(rar,"tom.zip")); // true // 反例 System.out.println(Pattern.matches(rar,"tom.txt"")); // false
复制代码 26、日期格式
3 d {7 T& q1 Z" m: d o$ O" c. N# G5 }
- public static final String date = "^\\d{4}(\\-|\\/|\\.)\\d{1,2}\\1\\d{1,2}$"; //日期 // 正例 System.out.println(Pattern.matches(date,"2024-10-24")); // true System.out.println(Pattern.matches(date,"2024/10/24")); // true // 反例 System.out.println(Pattern.matches(date,"2024年10月24日"")); // false
复制代码 27、日期和时间格式 _: c+ p, k4 @6 Z; e
0 e8 N6 P. v, j& O- public static final String datetime = "^\\d{4}(\\-|\\/|\\.)\\d{1,2}\\1\\d{1,2}(\\s\\d{2}:)?(\\d{2}:)?(\\d{2})?$"; //日期和时间 // 正例 System.out.println(Pattern.matches(datetime,"2024-10-24 23:59:59")); // true System.out.println(Pattern.matches(datetime,"2024/10/24 23:59:59")); // true // 反例 System.out.println(Pattern.matches(datetime,"2024年10月24日 23时59分59秒"")); // false
复制代码 28、QQ号码# M' K+ ]1 r, {% c) i! {/ t
% i Y/ L W" t% V. p8 w1 T
 - public static final String qq = "^[1-9]*[1-9][0-9]*$"; //QQ号码 // 正例 System.out.println(Pattern.matches(qq,"123456")); // true // 反例 System.out.println(Pattern.matches(qq,"1234567890")); // false
复制代码 29、电话号码的函数(包括验证国内区号,国际区号,分机号)3 [4 R) }, s$ p
: `, M% }9 s& b) q4 ~
- public static final String tel = "^(([0\\+]\\d{2,3}-)?(0\\d{2,3})-)?(\\d{7,8})(-(\\d{3,}))?$"; //电话号码的函数(包括验证国内区号,国际区号,分机号) // 正例 System.out.println(Pattern.matches(tel,"010-1234567")); // true System.out.println(Pattern.matches(tel,"0100-12345678")); // true // 反例 System.out.println(Pattern.matches(tel,"13800138000")); // false
复制代码 30、用户名注册
$ u3 x, y* D% T' T- Q9 c% n+ v0 l$ W5 M
 - public static final String username = "^[A-Za-z]\\w{5,}$"; //用来用户注册。匹配由数字、26个英文字母或者下划线组成的字符串 // 正例 System.out.println(Pattern.matches(username,"gupaoedutom")); // true // 反例 System.out.println(Pattern.matches(username,"tom@gupaoedu")); // false
复制代码 31、字母数字组合6 \$ m) a7 ]' J" A
- public static final String allstring = "^\\w+$"; //字母数字组合 // 正例 System.out.println(Pattern.matches(allstring,"abc123")); // true // 反例 System.out.println(Pattern.matches(allstring,"abc123%^&")); // false
复制代码 32、纯字母
3 j* l4 @' n" Y; s7 ^- public static final String letter = "^[A-Za-z]+$"; //字母 // 正例 System.out.println(Pattern.matches(letter,"abc")); // true // 反例 System.out.println(Pattern.matches(letter,"abc123")); // false
复制代码 33、纯大写字母5 D2 h5 G6 t T# h( V
- public static final String letter_u = "^[A-Z]+$"; //大写字母 // 正例 System.out.println(Pattern.matches(letter_u,"ABC")); // true // 反例 System.out.println(Pattern.matches(letter_u,"abc")); // false
复制代码 34、纯小写字母
3 G8 w1 v( ^/ m7 T$ ]& E- public static final String letter_l = "^[a-z]+$"; //小写字母 // 正例 System.out.println(Pattern.matches(letter_l,"abc")); // true // 反例 System.out.println(Pattern.matches(letter_l,"ABC")); // false
复制代码 35、第二代身份证号码匹配- ?4 H2 b3 j4 T
- public static final String idcard = "^[1-9]([0-9]{14}|[0-9]{17})$"; //身份证 // 正例 System.out.println(Pattern.matches(idcard,"100000201410241024")); // true // 反例 System.out.println(Pattern.matches(idcard,"1000002014102410240")); // false
复制代码 36、数字或字母# j8 s$ D# w; E; }
- public static final String numOrStr = "^[A-Za-z0-9]+$";//数字或字母 // 正例 System.out.println(Pattern.matches(numOrStr,"abc123")); // true System.out.println(Pattern.matches(numOrStr,"abc")); // true System.out.println(Pattern.matches(numOrStr,"123")); // true // 反例 System.out.println(Pattern.matches(numOrStr,"脚本之家")); // false
复制代码 到此这篇关于36个正则表达式(开发效率提高80%)的文章就介绍到这了,更多相关正则表达式内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
0 C- k& Z1 }/ z) W7 ^6 o/ `/ b, a( K4 Z) N, q3 ~( d* D
来源:http://www.jb51.net/article/229226.htm7 m5 C( D n# N# ^, g# \# N; X, z# I; j
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
×
|