vote up -1 vote down star
2

With .NET, I have the string "Thursday, April 10, 2008 1:30:00 PM" and from this string I want to generate the custom format string "dddd, MMMM dd, yyyy h:mm:ss tt". Other example would be the string "6:09:01 PM" generated into "h:mm:ss tt" and "Sat 29 Aug" generated into "ddd d MMM", and so on.

I know how to use DateTimeFormatInfo.GetAllDateTimePatterns in order to get a standard format string from a date string, but I want to generate custom formats, not the standard formats.

I want the custom date and time format string. I do not want the date because I have both the DateTime value and the formatted string value for the date. I need formatString as in <date>.ToString(formatString).

Issue

My issue is, I need to take a date value and store it as a "formatted date string" in another component. I do not have control over the storage. All I have is two properties of String and Type. For dates, that will be "April 10, 2008 1:30:00 PM" and DateTime. For integer, "-1" and Int32. The date, as a string, will be pass to a third-party component as an UTC date string and a display format string. If no format is specified, the third-party component defaults to "Short Date", which is not acceptable, especially if the DateTime is a time value. Basically, I need to turn "April 10, 2008 1:30:00 PM" into "MMMM dd, yyyy h:mm:ss tt".

Storage.Text = "April 10, 2008 1:30:00 PM"
Storage.Type = DateTime

Component.Value= "2008-04-10T13:30:00.0000000"
Component.Format = "MMMM dd, yyyy h:mm:ss tt" <- What I need from Storage, but will have to generate based on the Text property.

Temporary Solution

I been looking at the internals of DateTime.Parse using Reflector and Microsoft source code. Nothing that I can use stands out. I am currently only supporting standad format strings by using GetAllDateTimePatterns and throwing a format exception on non-standard format strings.

''' <summary>
''' Returns the standard DateTime format string for the specified formatted date string.
''' <example>
''' Dim oCell As DataGridViewCell = Me.DataGridView1.Item(0, 0)
''' If Len(oCell.InheritedStyle.Format) > 0 Then
'''     If oCell.ValueType Is GetType(Date) Then
'''         oResult.Format = GatherStandardDateTimeFormatString(oCell.FormattedValue.ToString, oCell.InheritedStyle.FormatProvider)
'''     End If
''' End If
''' </example>
''' </summary>
''' <param name="value">A formatted date string, such as "Thursday, April 10, 2008 1:30:00 PM".</param>
''' <returns>
''' Returns the expanded standard DateTime format string, such as "dddd, MMMM dd, yyyy h:mm:ss tt". This function does not return format specifiers, such as G, g, O, o, and so on.
''' </returns>
Public Function ToStandardDateTimeFormatString(ByVal value As String, ByVal provider As IFormatProvider) As String
    Dim sResult As String = Nothing
    Dim oIgnore As Date

    'make sure we have a workable formatted date string
    '   not catching the format exception on purpose
    System.Convert.ToDateTime(value, provider)

    Dim oFormatInfo As DateTimeFormatInfo = DirectCast(provider.GetFormat(GetType(DateTimeFormatInfo)), DateTimeFormatInfo)
    Dim sPatterns() As String = oFormatInfo.GetAllDateTimePatterns 'contains duplicates, and no format contains second fractions

    For Each sPattern As String In sPatterns

        If Date.TryParseExact(value, sPattern, provider, DateTimeStyles.None, oIgnore) Then
            sResult = sPattern
            Exit For
        End If

    Next

    If sResult Is Nothing Then
        Throw New FormatException(String.Format("Unable to find a standard DateTime format string for '{0}'.", value))
    End If

    Return sResult
End Function

More Information

flag
You're looking for custom formats available beyond DateTime.Now.ToString("ddd mm YYYY") etc? – JustLoren Oct 1 at 17:48
What do you mean parsing a DateTime String into a custom date and Time format string. You want to transform a string representation of a date/time into another? Is the original really a string? – Alfred Myers Oct 1 at 17:54
I update my question to help clarify what I am after. – AMissico Oct 1 at 17:57
Reading the comments to the answers I think I understand now what you are asking for. Given a date in string format such as "Thursday, April 10, 2008 1:30:00 PM", you want a type member that would return "dddd, dd MMMM, yyyy h:m:s t". Is that correct? – Alfred Myers Oct 1 at 18:08
@Alfred Myers, yes. – AMissico Oct 1 at 18:11
show 7 more comments

3 Answers

vote up 3 vote down

First of all, do you already have a DateTime type, or do you have a string? If the latter, look at the DateTime.ParseExact() or DateTime.TryParseExact() functions to turn that string into a DateTime.

Once you have the DateTime, it's easy. Just call the DateTime's .ToString() method.

The key to both parts is not DateTimeFormatInfo. Instead, you use a format string. You use the format string with both the [Try]ParseExact() functions and the ToString() function.

Just make sure you know which "culture" you're dealing with.

link|flag
This is not answering my question. I want the "format string" that a "date string" represents. – AMissico Oct 1 at 18:04
@AMissico: You could try some sort of wacky regular expression, I guess, but I agree with Joel: your best bet is to get your source string into a DateTime object. – wweicker Oct 1 at 18:26
@wweicker - I do have the DateTime object and the formatted value. I thought about regular expressions, but I can do basic soure code manipulation stuff. Nothing advanced. Moreover, I have a feeling that using regular expressions might make the process too complex. – AMissico Oct 1 at 18:33
I understand now- I misunderstood your question at first. I don't have a good answer for you, but since based on votes it looks like I'm not the only one I'll leave this here so you don't get more wrong answers like this rather than just delete it. – Joel Coehoorn Oct 1 at 19:54
vote up 0 vote down

If you are looking to convert actual date strings to C# DateTime format strings, this is not possible to do reliably.

How, for example, would you handle this string:

03/04/05 9:00

A few issues with that example:

  1. You do not know is the month, which is the year, etc.
  2. You do not know whether the format string should use 12- or 24-hour clock.
  3. You don't know for certain whether minutes are to be shown accurately, or always replaced with 00s.
link|flag
Yes, I agree that I cannot do reliably, but if using CultureInfo.DateTimeFormatInfo then it should be fairly reliable. From your example, it would be "MM/DD/yy h:mm", which is close enough, because I don't care if it is 9 am or 2100. That is up to the user. – AMissico Oct 1 at 18:02
#1 would be resolved with CultureInfo.DateTimeFormatInfo. – AMissico Oct 1 at 18:07
#2 is data entry issue and the user can fix. – AMissico Oct 1 at 18:09
#3 is always minutes because we are working with DateTime strings. – AMissico Oct 1 at 18:10
vote up 0 vote down

Pass the format to the ToString. Using the format you specified:


DateTime d = DateTime.Now;
Console.WriteLine(d.ToString("dddd, dd MMMM, yyyy h:m:s t"));
Console.WriteLine(d.ToString("hh:mm:ss tt"));
Console.WriteLine(d.ToString("ddd d MMM"));


UPDATED to reflect changes in the question.

A given date/time string may match one or more format strings, but you may get closer to what you want to do with something along the following lines:


class FindDateTimeFormat {
    public static void Show() {
        foreach (string item in GetMatchingFormats("Thursday, April 10, 2008 1:30:00 PM")) {
            Console.WriteLine(item);
        }
    }

    private static string[] GetMatchingFormats(string dateTimeString) {
        DateTimeFormatInfo formatInfo = CultureInfo.CurrentCulture.DateTimeFormat;
        List matchingFormats = new List();
        foreach (string format in formatInfo.GetAllDateTimePatterns()) {
            try {
                DateTime dateTime = DateTime.ParseExact(dateTimeString, format, null);
                if (!matchingFormats.Contains(format)) {
                    matchingFormats.Add(format);
                }
            }
            catch (FormatException) {
            }
        }
        return matchingFormats.ToArray();
    }
}

link|flag
Not answering question. – AMissico Oct 1 at 18:05
Doesn't answer it how? That matches my understanding of your question... – OrbMan Oct 1 at 19:22
The comment was for the original answer and not the updated answer. – AMissico Oct 1 at 19:27
Thank you Alfred, but I need the custom formats. – AMissico Oct 1 at 19:28
You don't want me to do that for you, do you? GetAllDateTimePatterns returns an array that you can combine (add to another list, array) with whatever custom formats you want. – Alfred Myers Oct 1 at 19:30
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.