Hi,
So, in dealing with the Google Data API most dates use the format above. Here is a regular expression to decompose it:
PLAIN TEXT
Actionscript:
var date:String = "2010-12-12T09:54:35.002Z";
var exp:RegExp = /(\d\d\d\d)([- \/.])(0[1-9]|1[012])\2(0[1-9]|[12][0-9]|3[01])T([0-2][0-9]):([0-5][0-9]):([0-5][0-9]).([0-9]{3})Z/i;
var res:Object = exp.exec(date);
// year res[1]
// month res[3]
// day res[4]
// hour res[5]
// minute res[6]
// seconds res[7]
// milliseconds res[8]
Now remember that the constructor for the [...]
