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
