Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am retrieving pretty badly formatted date stamps from the internet, examples:

sun apr 22 19:57:10 2012
thu apr 5 10:13:44 2012

Preferably I'd like:

22 April 2012 19:57:10
5 April 2012 10:13:44

Is there a straightforward method of feeding the bad date into a datestamp and then laying it out in a traditional method (as in an SQL query)?

share|improve this question

2 Answers

up vote 1 down vote accepted

Use an NSDateFormatter. For the format specification see here.

    NSString *date1 = @"sun apr 22 19:57:10 2012";
    NSString *date2 = @"thu apr 5 10:13:44 2012";

    //Release this later if not using ARC
    NSDateFormatter *dformatter = [[NSDateFormatter alloc] init]; 
    [dformatter setDateFormat:@"EEE MMM d H:m:s yyyy"];

    NSLog(@"Date: %@", [dformatter dateFromString:date1]);
    NSLog(@"Date: %@", [dformatter dateFromString:date2]);
share|improve this answer
Thanks for the example. Excellent class. – Vanthel Aug 15 '12 at 18:04

You will need to use NSDateformatter. Check the standard the server is using to provide the date format, and replicate the behavior with your NSDateformatter instance.

share|improve this answer
Wow can't believe I missed that, thanks! – Vanthel Aug 15 '12 at 18:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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