Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8032051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:16:41+00:00 2026-06-05T01:16:41+00:00

Possible Duplicate: Help parsing ISO 8601 date in Javascript I have a set of

  • 0

Possible Duplicate:
Help parsing ISO 8601 date in Javascript

I have a set of strings, all in similar form: 2012-05-31T00:00:00.0000000

All I want to pull from this is the year (2012), the month (05), and the day (31), then construct a javascript Date object from this data.

What is the best way to parse this data?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T01:16:43+00:00Added an answer on June 5, 2026 at 1:16 am

    The easiest way I can think of is using a regular expression, and passing the values to the Date constructor:

    function parseISODate(dateString) {
        var match = /^(\d{4})-(\d\d)-(\d\d)/.exec(dateString);
        return new Date(Number(match[1]), Number(match[2]) - 1, Number(match[3]));
    }
    
    console.log(parseISODate('2012-05-31T00:00:00.0000000'));
    // Date {Thu May 31 2012 00:00:00 GMT+0200}
    

    Of course, you could always expand this to match the time as well…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: E-mail validation in php? please help I have Ajax sign up form.
Possible Duplicate: SQL Server Database query help Hi, I have a problem that I
Possible Duplicate: Need help solving Project Euler problem 200 Similar to this question Project
Possible Duplicate: Rails - Help understanding how to use :dependent => :destroy I have
Possible Duplicate: JSON Parsing in Android Android Json Parsing Tutorial any body please help
Possible Duplicate: Need help in structuring things in XML file have a structure like
Possible Duplicate: Convert NSString of a date to an NSDate I need some help
Possible Duplicate: How to best split csv strings in oracle 9i can you help
Possible Duplicate: How to set this Layout in iPhone need Some help I draw
Possible Duplicate: JavaScript RegExp Three Parts I need a help with regular expressions in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.