程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> 關於C# >> C#中如何根據身份證號碼得到出生日期和性別

C#中如何根據身份證號碼得到出生日期和性別

編輯:關於C#
 

人事專員MM跟我說做人事系統要根據輸入的身份證號碼得到出生日期和性別以減輕前台MM錄入員工資料時的工作量,原來身份證號碼裡面的信息大有乾坤,以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
                {
                    if (identityCard.Length != 15 && identityCard.Length != 18)//身份證號碼只能為15位或18位其它不合法
                    {
                        MessageBox.Show("身份證號碼為15位或18位,請檢查!");
                        if (textBox_IdentityCard.CanFocus)
                        {
                            textBox_IdentityCard.Focus();
                        }
                        return;
                    }
                }
                string birthday = "";
                string sex = "";
                if (identityCard.Length == 18)//處理18位的身份證號碼從號碼中得到生日和性別代碼
                {
                    birthday = identityCard.Substring(6, 4) + "-" + identityCard.Substring(10, 2) + "-" + identityCard.Substring(12, 2);
                    sex = identityCard.Substring(14, 3);
                }
                if (identityCard.Length == 15)
                {
                    birthday = "19" + identityCard.Substring(6, 2) + "-" + identityCard.Substring(8, 2) + "-" + identityCard.Substring(10, 2);
                    sex = identityCard.Substring(12, 3);
                }
                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;
            }
        }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved