Simple:是不用区分大小写的和出现位置的
- RE: soft
- Match: Softleader, software, Javasoft, Microsoft, i2software
- RE: s.o
- Match: sso, soo, sto, s#o, s o
- RE: s[aeio]o
- Match: sao, seo, sio, soo
- RE: s(aa|i|o)o
- Match: saao, sio, soo
- 电话:99-99999999
- RE: [0-9]{2}/-[0-9]{8}
- Match: 02-89519456 , 02-89519554
- 电话:99-99999999 或 9999999999
- RE: [0-9]{2}/-?[0-9]{8}
- Match: 02-89519456 , 02-89519554 , 0289519999
- 身份证字号: A999999999
- RE: [A-Z]{1}[0-9]{9}
- Match: A111111111, B123456789, Z987654321
- RE: [^B]1
- Match: A1
- Not Match: A2,B1,B2
- 美国表示日期格式
- RE: [a-z]+/s+[0-9]{1,2},/s*[0-9]{4}
- Match: June 20, 2003
- /d [0-9]
- /D [^0-9]
- /w [A-Z0-9]
- /W [^A-Z0-9]
- /s [ /t/n/r/f]
- /S [^ /t/n/r/f]