show/hide this revision's text 4 edited body

Assuming your original date starts as a string and you want it to end up as another string, you could do something like this in C#:

string from = "24/5/2009 3:40:00 AM";
DateTime dt = DateTime.ParseExact(from, "d/M/yyyy h:mm:ff h:mm:ss tt", , System.Globalization.CultureInfo.InvariantCulture);
string to = dt.ToString("MM/dd/yyyy hh:mm:ff hh:mm:ss tt", System.Globalization.CultureInfo.InvariantCulture);

*Edit: Fixed the formatting strings. It assumes your original strings only have single digit day, month, and hour values when they are each less than 10. It also assumes you want them all to be 2 digit values for the result.

Here's the MSDN Documentation on the subject: Custom Date and Time Format Strings

show/hide this revision's text 3 added 51 characters in body

Assuming your original date starts as a string and you want it to end up as another string, you could do something like this in C#:

string from = "24/5/2009 3:40:00 AM";
DateTime dt = DateTime.ParseExact(from, "d/M/yyyy h:mm:ff tt", , System.Globalization.CultureInfo.InvariantCulture);
string to = dt.ToString("MM/dd/yyyy hh:mm:ff tt")tt", System.Globalization.CultureInfo.InvariantCulture);

*Edit: Fixed the formatting strings. It assumes your original strings only have single digit day, month, and hour values when they are each less than 10. It also assumes you want them all to be 2 digit values for the result.

Here's the MSDN Documentation on the subject: Custom Date and Time Format Strings

show/hide this revision's text 2 added 53 characters in body

Assuming your original date starts as a string and you want it to end up as another string, you could do something like this in C#:

string from = "24/5/2009 3:40:00 AM";
DateTime dt = DateTime.ParseExact("dd/MM/yyyy hh:mm")DateTime.ParseExact(from, "d/M/yyyy h:mm:ff tt", , System.Globalization.CultureInfo.InvariantCulture);
string to = from.ToString("MM/dd/yyyy hh:mm")dt.ToString("MM/dd/yyyy hh:mm:ff tt");

*Edit: I realized my original format string wouldn't work for Fixed the formatting strings. It assumes your sample dateoriginal strings only have single digit day, month, and hour values when they are each less than 10. I'll fix it in a secIt also assumes you want them all to be 2 digit values for the result.

Here's the MSDN Documentation on the subject: Custom Date and Time Format Strings

show/hide this revision's text 1