C#根据身份证号码判断出生日期和性别
程序员文章站
2022-04-15 10:17:01
18位的身份证,前面六位代表了你户籍所在地,第七位到第十四位代表了你的出生年月,第十五位到第十七为代表了你的性别(偶数为女,奇数为男),根据这一信息,我在系统开发的录入员工...
18位的身份证,前面六位代表了你户籍所在地,第七位到第十四位代表了你的出生年月,第十五位到第十七为代表了你的性别(偶数为女,奇数为男),根据这一信息,我在系统开发的录入员工的身份证后控件焦点转移时根据身份证号码获得生日和性别。
用c#写的代码如下:
/// <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; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: C# 拷贝数组的几种方法(总结)