mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
IdcardUtil
验证10位身份证兼容中英文括号(issue#IBP6T1@Gitee)
This commit is contained in:
parent
1e86db21d9
commit
bdf3a0a1f0
@ -89,9 +89,13 @@ public class CIN10 {
|
||||
* @param code 身份证号码
|
||||
* @throws IllegalArgumentException 身份证格式不支持
|
||||
*/
|
||||
public CIN10(final String code) throws IllegalArgumentException {
|
||||
public CIN10(String code) throws IllegalArgumentException {
|
||||
this.code = code;
|
||||
if (StrUtil.isNotBlank(code)) {
|
||||
// issue#IBP6T1 中文空格替换为英文
|
||||
code = StrUtil.replace(code, "(", "(");
|
||||
code = StrUtil.replace(code, ")", ")");
|
||||
|
||||
if (ReUtil.isMatch(PATTERN_TW, code)) { // 台湾
|
||||
this.province = "台湾";
|
||||
final char char2 = code.charAt(1);
|
||||
|
@ -0,0 +1,12 @@
|
||||
package org.dromara.hutool.core.data;
|
||||
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class IssueIBP6T1Test {
|
||||
@Test
|
||||
void isValidCard10Test(){
|
||||
Assertions.assertTrue(IdcardUtil.isValidCard10("1608214(1)"));
|
||||
Assertions.assertTrue(IdcardUtil.isValidCard10("1608214(1)"));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user