up vote 0 down vote favorite
share [g+] share [fb]

I have a date string (well, NSData, but that's easy to convert to a string) that's in what I believe is the format the HTTP standard uses:

Mon Apr 17 19:34:46 UTC 2006

Is there any better (i.e. less error-prone) way to parse that than specifying the format string by hand in an NSDateFormatter?

(My application is an iPhone app, but I suspect standard Cocoa solutions will work too, since NSDate and NSDateFormatter are part of Foundation.)

link|improve this question

I'm not sure I understood your question, you already have a NSDate and want to print it in a more user friendly format? If so why do you think it would be error-prone to use NSDateFormatter? – Alexandre L Telles Mar 15 '09 at 13:13
@Alexandre L Telles he doesn't have a NSDat*e*, but NSDat*a*, with a date string inside. – ax. Mar 15 '09 at 13:41
feedback

2 Answers

up vote 1 down vote accepted

No, I don't think there is a better way.

If you have some outside input, you must know the format of your input beforehand, and you can only prepare for problems, i.e. a fail over parser with an alternate NSDateFormatter.

link|improve this answer
I thought that might be the case. Thanks anyway. – Brent Royal-Gordon Mar 15 '09 at 15:45
feedback

Actually the standard HTP date format is:

"Mon, 11 May 2009 02:49:52 GMT"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.