使用python提取出身份证的出生日期(18位和15位)

有的时候我们需要在身份证中提取出出生日期,只是我们的身份证有两种,一种是15位,一种是18位,提取的时候就有点麻烦,记录一下,直接上代码,用的是python,其他语言也可以用这个逻辑。

def extract_birthdate(id_number):
    if len(id_number) == 18:
        # 如果是18位身份证号码
        birthdate = id_number[6:14]
        year = birthdate[0:4]
        month = birthdate[4:6]
        day = birthdate[6:8]
        return f"出生日期为:{year}{month}{day}日"
    elif len(id_number) == 15:
        # 如果是15位身份证号码
        birthdate = id_number[6:12]
        arr = ['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24']
        # 假设年份在 1900 年代
        year = '19' + birthdate[0:2]
        # 判断是否为00后?
        if birthdate[0:2] in arr:
            year = '20' + birthdate[0:2]
        month = birthdate[2:4]
        day = birthdate[4:6]
        return f"{year}-{month}-{day} 00:00:00"
    else:
        return "无法识别的身份证号码长度"

你可能感兴趣的:(python,linux,开发语言)