when i convert one array to json my date time change like this From 2017-07-12 11:58:07 to 2017-07-12T08:58:07.000Z
How can i parse this string to real datetime ?
I want to make like this
String Time="2017-07-12T08:58:07.000Z";
Datetime RealTime=getRealDateTime(Time);
The RealTime result is need to be 2017-07-12 11:58:07