Get a code for your birthday using your ID card number (18-bit and 15-bit ID cards are supported)

Source: Internet
Author: User

/// <Summary>
/// Get the birthday according to the ID card number
/// </Summary>
/// <Param name = "cardid"> ID card number </param>
/// <Returns> birthday </returns>
Public String getbirthday (string cardid)
{
String birthday;
If (cardid. Length = 18)
{
String str_year = cardid. substring (6, 4 );
String str_month = cardid. substring (10, 2 );
String str_day = cardid. substring (12, 2 );

Int year = convert. toint16 (str_year );
Int month = convert. toint16 (str_month );
Int day = convert. toint16 (str_day );
If (Year> 1800 & year <2500) & (month <= 12) & (day <= 31 ))
{
Birthday = year. tostring () + "year" + month. tostring () + "month" + day. tostring () + "day ";
Return birthday;
}
Else
{
Registerstartupscript ("prompt", "<SCRIPT> alert ('An error occurred while retrieving the birthday! ') </SCRIPT> ");
Return NULL;
}
}
Else
{
String str_year = cardid. substring (6, 2 );
String str_month = cardid. substring (8, 2 );
String str_day = cardid. substring (10, 2 );

Int year = convert. toint16 (str_year );
Int month = convert. toint16 (str_month );
Int day = convert. toint16 (str_day );
If (month <= 12) & (day <= 31 ))
{
Birthday = "19" + year. tostring () + "year" + month. tostring () + "month" + day. tostring () + "day ";
Return birthday;
}
Else
{
Registerstartupscript ("prompt", "<SCRIPT> alert ('An error occurred while retrieving the birthday! ') </SCRIPT> ");
Return NULL;
}
}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.