Get AM/PM for a date time in lowercase using only a datetime format - Stack Overflow most recent 30 from stackoverflow.com 2010-03-18T19:55:05Z http://stackoverflow.com/feeds/question/499393 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/499393/get-am-pm-for-a-date-time-in-lowercase-using-only-a-datetime-format 1 Get AM/PM for a date time in lowercase using only a datetime format Daniel Schaffer http://stackoverflow.com/users/2596 2009-01-31T19:31:02Z 2009-01-31T20:32:11Z <p>I'm to get a custom DateTime format including the AM/PM designator, but I want the "AM" or "PM" to be lowercase <em>without</em> making the rest of of the characters lowercase.</p> <p>Is this possible using a single format and without using a regex?</p> <p>Here's what I've got right now:</p> <pre><code>item.PostedOn.ToString("dddd, MMMM d, yyyy a\\t h:mmtt") </code></pre> <p>An example of the output right now would be <strong>Saturday, January 31, 2009 at 1:34PM</strong></p> http://stackoverflow.com/questions/499393/get-am-pm-for-a-date-time-in-lowercase-using-only-a-datetime-format/499396#499396 0 Answer by tvanfosson for Get AM/PM for a date time in lowercase using only a datetime format tvanfosson http://stackoverflow.com/users/12950 2009-01-31T19:33:35Z 2009-01-31T20:32:11Z <p><strong>EDIT</strong>: Jon's example is much better, though I think the extension method is still the way to go so you don't have to repeat the code everywhere. I've removed the replace and substituted Jon's first example in place in the extension method. My apps are typically intranet apps and I don't have to worry about non-US cultures.</p> <p>Add an extension method to do this for you.</p> <pre><code>public static class DateTimeExtensions { public static string MyDateFormat( this DateTime dateTime ) { return dateTime.ToString("dddd, MMMM d, yyyy a\\t h:mm") + dateTime.ToString("tt").ToLower(); } } ... item.PostedOn.MyDateFormat(); </code></pre> <p><strong>EDIT</strong>: Other ideas on how to do this at <a href="http://stackoverflow.com/questions/448634/how-to-format-a-datetime-like-oct-10-2008-1043am-cst-in-c">http://stackoverflow.com/questions/448634/how-to-format-a-datetime-like-oct-10-2008-1043am-cst-in-c</a>.</p> http://stackoverflow.com/questions/499393/get-am-pm-for-a-date-time-in-lowercase-using-only-a-datetime-format/499407#499407 6 Answer by Jon Skeet for Get AM/PM for a date time in lowercase using only a datetime format Jon Skeet http://stackoverflow.com/users/22656 2009-01-31T19:39:40Z 2009-01-31T19:52:42Z <p>I would personally format it in two parts: the non-am/pm part, and the am/pm part with ToLower:</p> <pre><code>string formatted = item.PostedOn.ToString("dddd, MMMM d, yyyy a\\t h:mm") + item.PostedOn.ToString("tt").ToLower(); </code></pre> <p>Another option (which I'll investigate in a sec) is to grab the current DateTimeFormatInfo, create a copy, and set the am/pm designators to the lower case version. Then use that format info for the normal formatting. You'd want to cache the DateTimeFormatInfo, obviously...</p> <p>EDIT: Despite my comment, I've written the caching bit anyway. It probably won't be <em>faster</em> than the code above (as it involves a lock and a dictionary lookup) but it does make the calling code simpler:</p> <pre><code>string formatted = item.PostedOn.ToString("dddd, MMMM d, yyyy a\\t h:mmtt", GetLowerCaseInfo()); </code></pre> <p>Here's a complete program to demonstrate:</p> <pre><code>using System; using System.Collections.Generic; using System.Globalization; public class Test { static void Main() { Console.WriteLine(DateTime.Now.ToString("dddd, MMMM d, yyyy a\\t h:mmtt", GetLowerCaseInfo()); } private static readonly Dictionary&lt;DateTimeFormatInfo,DateTimeFormatInfo&gt; cache = new Dictionary&lt;DateTimeFormatInfo,DateTimeFormatInfo&gt;(); private static object cacheLock = new object(); public static DateTimeFormatInfo GetLowerCaseInfo() { DateTimeFormatInfo current = CultureInfo.CurrentCulture.DateTimeFormat; lock (cacheLock) { DateTimeFormatInfo ret; if (!cache.TryGetValue(current, out ret)) { ret = (DateTimeFormatInfo) current.Clone(); ret.AMDesignator = ret.AMDesignator.ToLower(); ret.PMDesignator = ret.PMDesignator.ToLower(); cache[current] = ret; } return ret; } } } </code></pre> http://stackoverflow.com/questions/499393/get-am-pm-for-a-date-time-in-lowercase-using-only-a-datetime-format/499424#499424 1 Answer by casperOne for Get AM/PM for a date time in lowercase using only a datetime format casperOne http://stackoverflow.com/users/50776 2009-01-31T19:49:44Z 2009-01-31T19:49:44Z <p>You could split the format string into two parts, and then lowercase the AM/PM part, like so (I'm using :</p> <pre><code>DateTime now = DateTime.Now; string nowString = now.ToString("dddd, MMMM d, yyyy a\\t h:mm"); nowString = nowString + now.ToString("tt").ToLower(); </code></pre> <p>However, I think the more elegant solution is to use a DateTimeFormatInfo that you construct and replace the AMDesignator and PMDesignator properties with "am" and "pm" respectively:</p> <pre><code>DateTimeFormatInfo fi = new DateTimeFormatInfo(); fi.AMDesignator = "am"; fi.PMDesignator = "pm"; string nowString = now.ToString("dddd, MMMM d, yyyy a\\t h:mmtt", fi); </code></pre> <p>You can use the DateTimeFormatInfo instance to customize many other aspects of transforming a DateTime to a string.</p>