Android 2.3 js parsing question split ()

Source: Internet
Author: User

An error occurred while parsing the Android 2.3 version. split and parseInt both parsed 09 and 08 to or less. The solution is to retrieve the single digit directly.


Function getYMD (yMd ){

Var dArray = new Array ();
Var yyyy = parseInt (yMd. toString (). split ("-") [0]);
Var MM = parseInt (yMd. toString (). split ("-") [1]);
Var dd = parseInt (yMd. toString (). split ("-") [2]);
If (MM = 0 ){
MM = parseInt (yMd. substring (6, 7); // for Android 2.3 optimization, the parsing error will resolve both 09 and 08 to 0, 07 and below. There is no problem. The solution is to directly retrieve the single digit. Otherwise, both split and parseInt have problems.
}
If (dd = 0)
Dd = parseInt (yMd. substring (2.3); // for Android optimization, the parsing error will resolve both 09 and 08 to 0, 07 and below. There is no problem. The solution is to retrieve the single digit directly. Otherwise, both split and parseInt have problems.
DArray. push (yyyy );
DArray. push (MM );
DArray. push (dd );
Return dArray;
}

Related Article

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.