Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
198 views

Parsing dates without all values specified

I'm using free-form dates as part of a search syntax. I need to parse dates from strings, but only preserve the parts of the date that are actually specified. For instance, "november 1, 2010" is a ...
3
votes
5answers
60 views

Parse Date String to Some Java Object

I am working in a project that reads files and processes data. There I got to work with dates for example: 2012-01-10 23:13:26 January 13, 2012 I found the package Joda, kinda interesting package ...
3
votes
4answers
49 views

How can I parse these strings into UTC dates?

I'm scraping a site, and the dates come in two forms: 11-22-2011 07:41 AM Today @ 07:41 AM Both of these are GMT-8. I'd like to get a unix timestamp out of these, so that I can construct a ...
3
votes
3answers
243 views

Joda time timezone parsing with region/city

import org.joda.time.DateTimeZone; import org.joda.time.format.DateTimeFormat; import org.joda.time.format.DateTimeFormatter; public class Main { public static void main(String[] args) { ...
3
votes
2answers
130 views

Recommended way of parsing dates when presented in a variety of formats

I have a collection of dates as strings entered by users over a period of time. Since these came from humans with little or no validation., the formats entered for the dates varies widely. Below are ...
3
votes
4answers
452 views

Problem with date formats in JavaScript with different browsers

I am working with dates in an RSS feed, but am finding differing results when using the code below in IE, Chrome and Firefox: new Date('2001-01-01T12:00:00Z') Firefox is happy with that, but Chrome ...
3
votes
3answers
2k views

Inconsistent date parsing using SimpleDateFormat

I'm really scratching my head on this one. I've been using SimpleDateFormats with no troubles for a while, but now, using a SimpleDateFormat to parse dates is (only sometimes) just plain wrong. ...
3
votes
1answer
532 views

Fuzzy date parsing with Java

Are there any libraries for Java that allow you to interpret dates like "Yesterday", "Next Monday", ...
2
votes
2answers
119 views

Different Date.parse results for 2011-11-15 and 2011/11/15

Why Date.parse("2011-11-15") considers current time zone in Web browser, and Date.parse("2011/11/15") does not? Why the results are different?
2
votes
3answers
696 views

How do I parse RFC 3339 datetimes with Java?

I'm trying to parse the date returned as a value from the HTML5 datetime input field. Try it in Opera to see an example. The date returned looks like this: 2011-05-03T11:58:01Z. I'd like to parse ...
2
votes
3answers
114 views

DateTime: Require the user to enter a time component

Checking if a user input is a valid date or a valid "date + time" is easy: .NET provides DateTime.TryParse (and, in addition, VB.NET provides IsDate). Now, I want to check if the user entered a date ...
2
votes
3answers
446 views

Smart date interpretation

I can't remember which application I was using, but I do recall it having really neat date parsing/interpretation. For example, you could type in 'two days ago' or 'tomorrow' and it would understand. ...
1
vote
3answers
60 views

Wonky dating in Java

The following Java code just parses a date (with time portion) 2009-01-28-09:11:12 using SimpleDateFormat. Let's have look at it. final public class Main { public static void main(String[] args) ...
1
vote
3answers
68 views

Daily counts with TSQL?

I have a site where I record client metrics in a SQL Server 2008 db on every link clicked. I have already written the query to get the daily total clicks, however I want to find out how many times ...
1
vote
1answer
102 views

parsing date in php

I need to be able to compare some month names I have in an array. It would be nice if there were some direct way or sample of it.. I have this code but i dont know how to parse the given condition ...
1
vote
2answers
211 views

How can I use Java's SimpleDateFormat to parse a timezone given as “GMT+0100 (BST)”?

I have a date that's in the form of: Wed Aug 17 2011 09:57:09 GMT+0100 (BST) and have a filter that takes a time in a certain format. The problem seems to be the time zone on the end, none of the ...
1
vote
2answers
109 views

In Ruby, how to parse “9/12/2010 7:02pm”?

It seems that Time.parse will treat 9/12/2010 as December 9, 2010: irb(main):012:0> RUBY_VERSION => "1.9.2" irb(main):013:0> Time.parse('9/12/2010') => 2010-12-09 00:00:00 -0800 ...
1
vote
2answers
201 views

How do I parse a date string in an unknown format on iphone?

How can I parse a string that represents a date and/or time using iPhone SDK if I do not know the format? I am building an application that will allow a range of possible dates and times to be used, ...
1
vote
3answers
389 views

Convert date in text format to datetime format in T-SQL

I have a client supplied file that is loaded in to our SQL Server database. This file contains text based date values i.e. (05102010) and I need to read them from a db column and convert them to a ...
1
vote
2answers
542 views

Why don't I get the year right using SimpleDateFormat in java?

I trying to parse a data in a MySql Format, I ran accross SimpleDateFormat. I can get the proper day and month, but I got a strange result for the year : date = 2009-06-22; SimpleDateFormat sdf = new ...
0
votes
4answers
41 views

DateParsing a string converted from a Date

I have a datetime value that I want displaying as a string in particular format, at the moment I am trying this lastUpdate = DateTime.ParseExact(tmpDt.ToString(), "d/M/YYYY", ...
0
votes
3answers
47 views

How to convert a date string to a Date object?

How to convert a date string to a Date object? An example date string: 31.12.2009 23:12:00
0
votes
2answers
177 views

parsing date works in one locale, fails in another

I just ran into a very strange and serious issue. My app is calling up a Twitter feed and a blog feed, both contain a post date of course. When my phone is set to English locale it works, when I ...
0
votes
3answers
630 views

How to convert a date in this format (Tue Jul 13 00:00:00 CEST 2010) to a Java Date (The string comes from an alfresco property)

i'm managing a date that comes from an Alfresco Properties and is in the specified (Tue Jul 13 00:00:00 CEST 2010) and i need to convert it to a Java date...i've looked around and found millions of ...
0
votes
2answers
212 views

php version of mysql's str_to_date()

I've come across this in my companies code base, and I'd like to change it to something that doesn't connect to mysql just to just a function: $sql = "select ...
0
votes
2answers
409 views

JQuery UI Datepicker parseDate 'Missing number at position 6'

I need to parse dates like '070126' to '26 Jan 2007'. I thought I could use the datepicker, but it gives me the an error... $.datepicker.parseDate('ymmdd', '070126') #=> Missing number at position ...
0
votes
1answer
223 views

Parsing a String into Date with DateFormat not parsing correctly

I've been searching all over and just can't find a explanation or reason why this is happening but the parse(String) method of DateFormat just isn't parsing my String correctly. I'm trying to parse a ...
0
votes
6answers
678 views

parse this type of date format in java?

what would be the easiest way to parse this date format below in java?: 2010-09-18T10:00:00.000+01:00 i read the DateFormat api in java and could not find a method that takes a string or even this ...
0
votes
2answers
124 views

How do I get my Python date in the format that I want?

I'm reading a date from an Excel cell in Python (using .Value on the cell)... the result that I get is: 07/06/10 00:00:00 I thought this was a string, and so went about trying to figure out how to ...
0
votes
1answer
52 views

Searching Database by Arbitrary Date in PHP

Suppose you have a messaging system built in PHP with a MySQL database backend, and you would like to support searching for messages using arbitrary date strings. The database includes a messages ...
0
votes
2answers
2k views

How to use JSON.parse reviver parameter to parse date string

My JSON string contains a date field that returns such a value "2009-04-04T22:55:16.0000000-04:00" I am particularly interested in parsing only the date compartment not the time. I tried using ...