IdcardUtil验证10位身份证兼容中英文括号(issue#IBP6T1@Gitee)

This commit is contained in:
Looly 2025-02-27 08:34:21 +08:00
parent 1e86db21d9
commit bdf3a0a1f0
2 changed files with 17 additions and 1 deletions

View File

@ -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);

View File

@ -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("16082141"));
}
}