zoukankan      html  css  js  c++  java
  • C#根据身份证获出生日期和性别---含C#代码

    原来身份证号码里面的信息大有乾坤,以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;
                }
            }

  • 相关阅读:
    【JavaScript进阶】深入理解JavaScript中ES6的Promise的作用并实现一个自己的Promise
    【原创】使用HTML5+canvas+JavaScript开发的原生中国象棋游戏及源码分享
    【VIP视频网站项目三】项目框架搭建、项目路由配置、数据库表结构设计
    【JavaScript】通过封装自己的JSONP解决浏览器的跨域问题(Ajax跨域)
    【VIP视频网站项目二】搭建爱奇艺优酷腾讯视频官网首页轮播图效果及实现原理分析
    【VIP视频网站项目一】搭建视频网站的前台页面(导航栏+轮播图+电影列表+底部友情链接)
    【JavaScript】不使用正则表达式和字符串的方式来解析浏览器的URl地址信息
    【JavaScript游戏开发】JavaScript+HTML5封装的苏拉卡尔塔游戏(包含源码)
    【JavaScript游戏开发】使用HTML5+Canvas+JavaScript 封装的一个超级马里奥游戏(包含源码)
    【JavaScript游戏开发】使用HTML5 canvas开发的网页版中国象棋项目
  • 原文地址:https://www.cnblogs.com/yangkang0909/p/3346987.html
Copyright © 2011-2022 走看看