• C# 通过身份证查询出生日期


     1 private int GetAgeBycode(string b_car_code)
     2         {
     3             string birthday = "";
     4             //处理18位的身份证号码从号码中得到生日和性别代码
     5             if (b_car_code.Length == 18)
     6             {
     7                 birthday = b_car_code.Substring(6, 4) + "-" + b_car_code.Substring(10, 2) + "-" + b_car_code.Substring(12, 2);
     8             }
     9             //处理15位的身份证号码从号码中得到生日和性别代码
    10             if (b_car_code.Length == 15)
    11             {
    12                 birthday = "19" + b_car_code.Substring(6, 2) + "-" + b_car_code.Substring(8, 2) + "-" + b_car_code.Substring(10, 2);
    13             }
    14             return birthday;
    15 
    16         }
  • 相关阅读:
    MongoDB 与 MySQL 性能比较
    PySpider简易教程
    使用redis有什么缺点
    禅道
    Shell02
    Shell01
    性能测试06
    性能测试05
    性能测试04
    性能测试03
  • 原文地址:https://www.cnblogs.com/jiaguo648517982/p/4262699.html
Copyright © 2020-2023  润新知