delphidelphi-5

Converting a string to TDateTime based on an arbitrary format


Is there any way in Delphi 5 to convert a string to a TDateTime where you can specify the actual format to use?

I'm working on a jobprocessor, which accepts tasks from various workstations. The tasks have a range of parameters, some of which are dates, but (unfortunately, and out of my control) they're passed as strings. Since the jobs can come from different workstations, the actual datetime format used to format the dates as a string might (and, of course, actual do) differ.

Googling around, the only quick solutions I found was to sneakily change the ShortDateFormat variable, and restore it to its original value afterwards. Since ShortDateFormat is a global variable, and I'm working in a threaded environment the only way this would work is by synchronizing every access to it, which is completely unacceptable (and undoable).

I could copy the library code from the SysUtils unit into my own methods, and tweak them to work with a specified format instead of the global variables, but I'm just wondering if there's something more adequate out there that I missed.

UPDATE

To put it more succinctly:

I need something like StrToDate (or StrToDateTime), with the added option of specifying the exact format it should use to convert the string to a TDateTime.


Solution

  • I created such routine for FreePascal's dateutils unit, and it should easy to port, if porting is needed at all.

    Code:

    http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/packages/rtl-objpas/src/inc/dateutil.inc?revision=30628&view=co

    (code is the last (huge) procedure at the end of the file)

    documentation:

    http://www.freepascal.org/docs-html/rtl/dateutils/scandatetime.html

    Note that it is not a complete inverse of formatdatetime, and it has some extensions:

    (I believe these comments are slightly outdated in the sense hat some Asian support was added later but I am not sure)