Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I convert the string to datetime. I have following string:

08/19/2012 04:33:37 PM

I want to convert above string to following format date:

MM-dd-yyyy

and

dd/MM/yyyy HH:mm:ss

I have been trying to convert using different technique and using following:

DateTime firstdate = DateTime.Parse(startdatestring);

It shows following error

String was not recognized as a valid DateTime.

I have search for it and couldn't get exact solution and also try using different format for datetime. Please how can I convert above string to above date format

share|improve this question

1 Answer

up vote 6 down vote accepted

You need to parse the string first - you have missed out the AM/PM designator. Take a look at Custom Date and Time Format Strings on MSDN:

DateTime firstdate = DateTime.ParseExact(startdatestring, 
                                         "MM/dd/yyyy hh:mm:ss tt",
                                         CultureInfo.InvariantCulture);

Then you can format to a string:

var firstDateString = firstdate.ToString("MM-dd-yyyy");

Which you may also want to do with InvariantCulture:

var firstDateString = firstdate.ToString("MM-dd-yyyy", 
                                         CultureInfo.InvariantCulture);
share|improve this answer
string is come from datepicker. When I select less than 12 for day it works fine otherwise show error like The DateTime represented by the string is not supported in calendar System.Globalization.GregorianCalendar. that means day is taken as month. Where i have to change in code – CodeManiac Aug 28 '12 at 11:13
@CodeManiac - If you are using a DatePicker, just use the DateTime it exposes directly - why are you going through a string representation at all? – Oded Aug 28 '12 at 11:29

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.