To convert from dd/mm/yyyy to mm/dd/yyyy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:54:00Z http://stackoverflow.com/feeds/question/784844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/784844/to-convert-from-dd-mm-yyyy-to-mm-dd-yyyy 0 To convert from dd/mm/yyyy to mm/dd/yyyy ramyatk06 2009-04-24T07:28:24Z 2009-04-24T14:45:11Z <p>hi guys, I used the following code. string result = DateTime.ParseExact("24/5/2009 3:40:00 AM", "d/M/yyyy h:mm", CultureInfo.InvariantCulture) .ToString("M/d/yyyy h:mm");</p> <blockquote> <p>In my textbox time after 12'0 Clock( for eg:24/5/2009 14:00 ) i want to convert to format as 24/5/2009 2:00 PM.Can anybody give appropriate code?</p> </blockquote> http://stackoverflow.com/questions/784844/to-convert-from-dd-mm-yyyy-to-mm-dd-yyyy/784851#784851 4 Answer by Ryan for To convert from dd/mm/yyyy to mm/dd/yyyy Ryan 2009-04-24T07:34:37Z 2009-04-24T09:07:17Z <p>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#:</p> <pre><code>string from = "24/5/2009 3:40:00 AM"; DateTime dt = DateTime.ParseExact(from, "d/M/yyyy h:mm:ss tt", , System.Globalization.CultureInfo.InvariantCulture); string to = dt.ToString("MM/dd/yyyy hh:mm:ss tt", System.Globalization.CultureInfo.InvariantCulture); </code></pre> <p>*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.</p> <p>Here's the MSDN Documentation on the subject: <a href="http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx" rel="nofollow">Custom Date and Time Format Strings</a></p> http://stackoverflow.com/questions/784844/to-convert-from-dd-mm-yyyy-to-mm-dd-yyyy/784858#784858 0 Answer by CMS for To convert from dd/mm/yyyy to mm/dd/yyyy CMS 2009-04-24T07:41:44Z 2009-04-24T14:41:47Z <pre><code>Dim result As String = DateTime.ParseExact("24/5/2009 3:40:00 AM", "d/M/yyyy h:mm:ss tt", CultureInfo.InvariantCulture) .ToString("M/d/yyyy h:mm:ss tt") </code></pre> <p>See also:</p> <ul> <li><a href="http://msdn.microsoft.com/en-us/library/8kb3ddd4.aspx" rel="nofollow">Custom Date and Time Format Strings</a></li> <li><a href="http://acodingfool.typepad.com/blog/dotnet-string-formatting-cheat-sheet.html" rel="nofollow">.NET String Formatting Cheat Sheet</a></li> </ul> http://stackoverflow.com/questions/784844/to-convert-from-dd-mm-yyyy-to-mm-dd-yyyy/784921#784921 0 Answer by Guffa for To convert from dd/mm/yyyy to mm/dd/yyyy Guffa 2009-04-24T08:11:31Z 2009-04-24T08:25:09Z <p>A <code>DateTime</code> value doesn't have a format at all, so if the source is a datetime value it's not actually a conversion but a just matter of formatting the output.</p> <p>You can use the custom foratting string <code>"M'/'d'/'yyyy h':'mm':'ss tt"</code> to get exactly that format. (Your question mentions two different formats, so I assume that it's the one represented by the example data that you want; the one that has seconds.)</p> <p>Example:</p> <pre><code>Dim result As String = source.ToString("M'/'d'/'yyyy h':'mm':'ss tt") </code></pre> <p>If the source is a string so that it's actually a conversion that you need, you can either use string operations to chop up the string into components and rearrange them, or you can parse the string into a <code>DateTime</code> value and reformat it into a new string.</p> <p>Example:</p> <pre><code>Dim source As String = "24/5/2009 3:40:00 AM" Dim d As DateTime = DateTime.ParseExact(source, "d'/'M'/'yyyy h':'mm':'ss tt", CultureInfo.InvariantCulture) Dim result As String = d.ToString("M'/'d'/'yyyy h':'mm':'ss tt") </code></pre> <p>Or:</p> <pre><code>Dim source As String = "24/5/2009 3:40:00 AM" Dim d As String() = source.Split("/".ToCharArray(), 3) string result = d(1) + "/" + d(0) + "/" + d(2) </code></pre>