Hi,
I'm trying to import a column of times in the format
1 | 2014-09-01T14:30:12:123Z |
2 | 2014-09-01T14:32:13:33Z |
3 | 2014-09-01T14:12:12:523Z |
4 | 2014-09-01T14:23:12:323Z |
Currently RapidMiner uses SimpleDateFormat for the date formatting
http://docs.oracle.com/javase/6/docs/api/java/text/SimpleDateFormat.htmlbut I'm struggling to work out how to implement it for the above values. It's the ISO 8601 datetime format so I had thought it would be pretty straightforward
http://www.w3.org/TR/NOTE-datetimeI have tired the patterns
yyyy-MM-dd'T'HH:mm:ss.SSSZ (this works for 1,3 & 4 but fails on 2)
yyyy-MM-dd'T'HH:mm:ss.SZ (this fails on all)
yyyy-MM-dd'T'HH:mm:ss.Sz (this fails on all)
Anyone have any ideas?