I have the following date string: 2011-09-06T22:02:57-04:00. The problem is the timezone, -04:00. The Java7 docs say I can use XXX to magically match this timezone string: http://download.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
The problem is that Groovy does not support the X character, presumably because it's not using JDK7 yet. The z character doesn't work because it isn't GMT-07:00, only -07:00 What is the easiest way to parse this timezone?
-tjw
SimpleDateFormatclass in the jar in the Groovy installation, I think. – Ray Toal Sep 7 '11 at 4:31Zandzpatterns are supported, but notX, hence my problem. I know of no other straightforward way to parse this string. To be clear, any pre-7 Java programs would have this issue as well. – Travis Webb Sep 7 '11 at 4:35