服务器之家

服务器之家 > 正文

C#根据身份证号码判断出生日期和性别

时间:2021-12-06 14:43     来源/作者:※WYF※

18位的身份证,前面六位代表了你户籍所在地,第七位到第十四位代表了你的出生年月,第十五位到第十七为代表了你的性别(偶数为女,奇数为男),根据这一信息,我在系统开发的录入员工的身份证后控件焦点转移时根据身份证号码获得生日和性别。 

用C#写的代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/// <summary>
/// 在控件验证 textBox_IdentityCard 的 Validated事件中定义身份证号码的合法性并根据身份证号码得到生日和性别
/// </summary>
private void textBox_IdentityCard_Validated(object sender, EventArgs e)
{
  try
  {
    //获取得到输入的身份证号码
    string identityCard = textBox_IdentityCard.Text.Trim();
    if (string.IsNullOrEmpty(identityCard))
 
    {
 
      //身份证号码不能为空,如果为空返回
 
      MessageBox.Show("身份证号码不能为空!");
 
      if (textBox_IdentityCard.CanFocus)
 
      {
 
        textBox_IdentityCard.Focus();//设置当前输入焦点为textBox_IdentityCard
 
      }
 
      return;
 
    }
 
    else
 
    {
 
      //身份证号码只能为15位或18位其它不合法
 
      if (identityCard.Length != 15 && identityCard.Length != 18)
 
      {
 
        MessageBox.Show("身份证号码为15位或18位,请检查!");
 
        if (textBox_IdentityCard.CanFocus)
 
        {
 
          textBox_IdentityCard.Focus();
 
        }
 
        return;
 
      }
 
    }
    string birthday = "";
    string sex = "";
    //处理18位的身份证号码从号码中得到生日和性别代码
    if (identityCard.Length == 18)
    {
      birthday = identityCard.Substring(6, 4) + "-" + identityCard.Substring(10, 2) + "-" + identityCard.Substring(12, 2);
      sex = identityCard.Substring(14, 3);
 
    }<br>
 
    //处理15位的身份证号码从号码中得到生日和性别代码
    if (identityCard.Length == 15)
    {
      birthday = "19" + identityCard.Substring(6, 2) + "-" + identityCard.Substring(8, 2) + "-" + identityCard.Substring(10, 2);
      sex = identityCard.Substring(12, 3);
    }<br>
    textBox_Birthday.Text = birthday;
    //性别代码为偶数是女性奇数为男性
    if (int.Parse(sex) % 2 == 0)
    {
      this.comboBox_Sex.Text = "女";
    }
 
    else
    {
      this.comboBox_Sex.Text = "男";
    }
  }
  catch (Exception ex)
 
  {
 
    MessageBox.Show("身份证号码输入有误");
    if (textBox_IdentityCard.CanFocus)
    {
      textBox_IdentityCard.Focus();
    }
    return;
  }
}

 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部