On Tue, May 26, 2009 at 6:17 PM, yogesh patel <[email protected]> wrote:
> I have a String like "Tue May 26 18:12:55 IST 2009". How to
> convert this string into Date object ?
var s:String = "Tue May 26 18:12:55 IST 2009";
s = s.replace(/IST/, "UTC+0530");
var d:Date = new Date(Date.parse(s));
trace(d);
Manish

