What's the nicest way to parse a date that can be in one of the following formats
"dd-MM-yyyy HH:mm"
"dd/MM/yyyy HH:mm"
"dd.MM.yyyy HH:mm"
without creating 3 SimpleDateFormats and parsing against each one.
Thanks
|
What's the nicest way to parse a date that can be in one of the following formats
without creating 3 SimpleDateFormats and parsing against each one. Thanks |
||||
|
|
|
It's probably easiest to "tweak" the source string into a canonical format:
Then use the format string using "-". Note that this is very specific, only replacing exactly the characters you're interested in, to avoid unwanted side-effects. |
|||
|
|
Could you run two replace operations first, so that you reduce all three formats to a single one? |
|||
|
|
|
You may use Apache commons lang DateUtils.parseDate
Well, internally it creates SimpleDateFormats, but whats wrong with that? |
||||
|
|
|
how about a regex:
In code this would mean something like this:
|
|||||||
|
|
Doing it yourself with a regular expression:
Note however that this does allow mixing different separators, e.g. "17-09/2009 12:00" would be allowed. |
|||
|
ParseExact can take an array of formats. You still have to specify all formats, but it's a single operation. |
|||||||||
|