在java后台,用正则表达式验证身份证

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在java后台,用正则表达式验证身份证相关的知识,希望对你有一定的参考价值。

public static boolean identity(String str)
Pattern pattern = Pattern.compile("????");
return pattern.matcher(str).matches();

上面代码,?处该怎么写

试过^\d15|\d18$ 等,都会报错,我不需要太复杂的,谢谢!

参考技术A 这个是正则表达式,给你段代码,你自己琢磨吧!

//正则表达式 校验是否存在非法字符
private String checkPattern(String str)
String len;
String regEx="[`~!@#$%^&*()+=|':;',\\[\\].<>/?~!@#¥%……&*()——+|【】‘;:”“’。,、?]";
Pattern p = Pattern.compile(regEx);
Matcher m = p.matcher(str);
len=m.replaceAll("").trim();
return len;
参考技术B String regx = "([0-9]17([0-9]|X))|([0-9]15)";自己写的 有的身份证最后一位是X本回答被提问者采纳 参考技术C alert(/^\d17\d1|X$/.test("11111111111111111X"));//返回true或者false 最后可以为X的验证 参考技术D ---'/^[1-9][0-9]5(19[0-9]2|200[0-9]|2010)(0[1-9]|1[0-2])(0[1-9]|[12][0-9]|3[01])[0-9]3[0-9xX]$/'

public bool isCard(string s_aStr)

Regex reg15 = new Regex(@"^[1-9]\d7((0\[1-9])|(1[0-2]))(([0\[1-9]|1\d|2\d])|3[0-1])\d2([0-9]|x|X)1$");
Regex reg18 = new Regex(@"^[1-9]\d5[1-9]\d3((0\[1-9]))|((1[0-2]))(([0\[1-9]|1\d|2\d])|3[0-1])\d3([0-9]|x|X)1$");
if (reg15.IsMatch(s_aStr) || reg18.IsMatch(s_aStr))

return true;

return false;
第5个回答  2013-08-29 ^\\d15|\\d18$追问

java.util.regex.PatternSyntaxException: Illegal repetition near index 9
^\d15|\d18$
^
at java.util.regex.Pattern.error(Pattern.java:1713)
按你说的那样写,报错了

追答

^\d15|\d18$

追问

跟我的有区别?

追答

^\\d15|\\d18$

正则表达式如何验证身份证号?

Function IDCheck(e)
IDCheck = true
arrVerifyCode = Split("1,0,x,9,8,7,6,5,4,3,2", ",")
Wi = Split("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2", ",")
Checker = Split("1,9,8,7,6,5,4,3,2,1,1", ",")
If Len(e) < 15 Or Len(e) = 16 Or Len(e) = 17 Or Len(e) > 18 Then
'IDCheck= "身份证号共有 15 码或18位"
IDCheck = False
Exit Function
End If
Dim Ai
If Len(e) = 18 Then
Ai = Mid(e, 1, 17)
ElseIf Len(e) = 15 Then
Ai = e
Ai = Left(Ai, 6) & "19" & Mid(Ai, 7, 9)
End If
If Not IsNumeric(Ai) Then
'IDCheck= "身份证除最后一位外,必须为数字!"
IDCheck = False
Exit Function
End If
Dim strYear, strMonth, strDay
strYear = CInt(Mid(Ai, 7, 4))
strMonth = CInt(Mid(Ai, 11, 2))
strDay = CInt(Mid(Ai, 13, 2))
BirthDay = Trim(strYear) + "-" + Trim(strMonth) + "-" + Trim(strDay)
If IsDate(BirthDay) Then
If DateDiff("yyyy",Now,BirthDay)<-140 or cdate(BirthDay)>date() Then
'IDCheck= "身份证输入错误!"
IDCheck = False
Exit Function
End If
If strMonth > 12 Or strDay > 31 Then
IDCheck = False
'IDCheck= "身份证输入错误!"
Exit Function
End If
Else
'IDCheck= "身份证输入错误!"
IDCheck = False
Exit Function
End If
Dim i, TotalmulAiWi
For i = 0 To 16
TotalmulAiWi = TotalmulAiWi + CInt(Mid(Ai, i + 1, 1)) * Wi(i)
Next
Dim modValue
modValue = TotalmulAiWi Mod 11
Dim strVerifyCode
strVerifyCode = arrVerifyCode(modValue)
Ai = Ai & strVerifyCode
IDCheck = Ai
If Len(e) = 18 And e 〈〉 Ai Then
'IDCheck= "身份证号码输入错误!"
IDCheck = False
Exit Function
End If
End Function
参考技术A var myRegExp=/^\d17[\d|x]$|^\d15$/i;用myRegExp就可以验证输入的字符串是否符合身份证的编码规则了或者你直接把/^\d17[\d|x]$|^\d15$/i;放入控件的正则表达式属性里面就OK了

以上是关于在java后台,用正则表达式验证身份证的主要内容,如果未能解决你的问题,请参考以下文章

Java电商常用正则表达式 手机号 邮箱 身份证 验证码等

正则表达式如何验证身份证号?

验证身份证号码的正确正则表达式

比较常用证件正则表达式验证大全

正则表达式

怎么用js正则验证文本框只能输入中文和英文