To convert from dd/mm/yyyy to mm/dd/yyyy - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T18:54:00Zhttp://stackoverflow.com/feeds/question/784844http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/784844/to-convert-from-dd-mm-yyyy-to-mm-dd-yyyy0To convert from dd/mm/yyyy to mm/dd/yyyyramyatk062009-04-24T07:28:24Z2009-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#7848514Answer by Ryan for To convert from dd/mm/yyyy to mm/dd/yyyyRyan2009-04-24T07:34:37Z2009-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#7848580Answer by CMS for To convert from dd/mm/yyyy to mm/dd/yyyyCMS2009-04-24T07:41:44Z2009-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#7849210Answer by Guffa for To convert from dd/mm/yyyy to mm/dd/yyyyGuffa2009-04-24T08:11:31Z2009-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>