views:

136

answers:

1

Hi,

I have the data as customerFromDate " 01 Apr 2010 " and customerToDate " 30 Apr 2010 " which is a string.

I want to convert that format into yyyy-MM-dd it should be in string. but while doing so. I got null values. Please see the following code which I had tried.

printf("\n customerFromDate %s",[customerStatementObj.customerFromDate UTF8String]); printf("\n customerToDate %s",[customerStatementObj.customerToDate UTF8String]); /* prints as the following customerFromDate 01 Apr 2010 customerToDate 30 Apr 2010 */

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc]init];
[dateFormatter setDateFormat:@"yyyy-MM-dd"];
NSDate *fromDate=[[NSDate alloc]init];
fromDate = [dateFormatter dateFromString:customerStatementObj.customerFromDate];
printf("\n fromDate: %s",[fromDate.description UTF8String]);
NSString *fromDateString=[dateFormatter stringFromDate:fromDate];
printf("\n fromDateString: %s",[fromDateString UTF8String]);    
[dateFormatter release];

NSDateFormatter *dateFormatter1 = [[NSDateFormatter alloc]init];
[dateFormatter1 setDateFormat:@"yyyy-MM-dd"];
NSDate *toDate=[[NSDate alloc]init];
toDate = [dateFormatter1 dateFromString:customerStatementObj.customerToDate];
printf("\n toDate: %s",[toDate.description UTF8String]);
NSString *toDateString=[dateFormatter1 stringFromDate:toDate];
printf("\n toDateString: %s",[toDateString UTF8String]);            
[dateFormatter1 release];

Thank you, Madan Mohan.

+1  A: 

Several notes:

You need two different NSDateFormatters. One that specifies the input date format, and one that specifies the output date format.

    NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
    [inputFormatter setDateFormat:@"dd MMM yyyy"];
    NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
    [outputFormatter setDateFormat:@"yyyy-MM-dd"];

You can reuse these formatters for both your fromDate and your toDate.

Secondly, dateFromString: returns an allocated, autoreleased NSDate object. You are leaking the ones you manually allocate.

#import <Cocoa/Cocoa.h>

int main (int argc, char const *argv[])
{
    NSAutoreleasePool *pool = [NSAutoreleasePool new];

    NSDateFormatter *inputFormatter = [[NSDateFormatter alloc] init];
    [inputFormatter setDateFormat:@"dd MMM yyyy"];
    NSDateFormatter *outputFormatter = [[NSDateFormatter alloc] init];
    [outputFormatter setDateFormat:@"yyyy-MM-dd"];

    NSDate *fromDate = [inputFormatter dateFromString:@"01 Apr 2010"];
    NSDate *toDate = [inputFormatter dateFromString:@"30 Apr 2010"];

    printf("\n fromDate: %s",[fromDate.description UTF8String]);
    NSString *fromDateString=[outputFormatter stringFromDate:fromDate];
    printf("\n fromDateString: %s",[fromDateString UTF8String]);

    printf("\n toDate: %s",[toDate.description UTF8String]);
    NSString *toDateString=[outputFormatter stringFromDate:toDate];
    printf("\n toDateString: %s",[toDateString UTF8String]);

    [inputFormatter release];
    [outputFormatter release];

    [pool drain];
    return 0;
}
Matt B.
Thank you very much for your proactive response
Madan Mohan