I am making an application. The application uses date format such as
"2012-11-21 15:22:35".
I already know that the format is "yyyy-MM-dd HH:mm:ss". But how can I find programmatically the date & time format of an arbitrary input string? Is there any way to do this?
|
|
|||||||
|
|
I think you would run into problems with date strings where the month value is <= 12 as this means that the format of that string could be There is no way of knowing which one is the correct one unless you put a preference in your parser. For example:
You could just brute-force it and hope there is a CultureInfo matching the format
|
|||
|
|
|
Use the below code : string sysFormat = CultureInfo.CurrentCulture.DateTimeFormat; |
|||
|
|
If you want to recognize the format, there is almost no way to do this with 100% certainty. However, you may want to go through all the formats supported by given
Depending on your cultural bias, you may interpret it as October 11, 2012; November 10, 2012 or November 12, 2010. You haven't mentioned what you want to do with the date, so I will give you just regular best practices:
Ad 1. To convert to invariant date & time format use:
or (to convert to ISO8601-like format):
Like-wise, you can parse DateTime from invariant format:
or (universal format requires no CultureInfo):
Ad 2 & 3. Formatting and parsing for specific culture is similar to formatting and parsing invariant dates, but you need to replace InvariantCulture with a detected, specific instance, say Depending on the type of your application, you may want to use dedicated Calendar control, i.e. jQuery UI Datepicker. |
|||
|
|