zoukankan      html  css  js  c++  java
  • 身份证验证

    /// <summary>
    /// Summary description for IDCardValid
    /// </summary>

    public class IDCardValid
    {
        
    public IDCardValid()
        
    {
            
    //
            
    // TODO: Add constructor logic here
            
    //
        }


        
    /// <summary>
        
    /// 验证身份证号码
        
    /// </summary>
        
    /// <param name="Id">身份证号码</param>
        
    /// <returns>验证成功为True,否则为False</returns>

        public static bool CheckIDCard(string Id)
        
    {
            
    if (Id.Length == 18)
            
    {
                
    bool check = CheckIDCard18(Id);
                
    return check;
            }

            
    else if (Id.Length == 15)
            
    {
                
    bool check = CheckIDCard15(Id);
                
    return check;
            }

            
    else
            
    {
                
    return false;
            }

        }

        
    身份证号码验证
    }
  • 相关阅读:
    atitit.颜色查找 根据范围 图像处理 inRange
    Atitit 跨平台的系统截图解决方案
    Atitit java opencv 捕获视频
    路法Atiti
    Atitit 获取本机图像设备视频设备列表 设备检索列表解决方案
    Atitit 团队工具链体系打造提升团队效率的一些通用软件 attilax总结
    Atitit gui控件定位解决方案
    Atitit html5.1 新特性attilax总结
    Atitti 模板匹配 List matchTemplate(
    利用CRebar和CDialogBar编写可浮动的dialog类型的工具栏
  • 原文地址:https://www.cnblogs.com/zijinguang/p/1238755.html
Copyright © 2011-2022 走看看