Problem in Coverting one Date Format to Other date Format
S Sankar
Greenhorn
Joined: Jul 31, 2007
Posts: 4
posted
0
Hi,
I have a string like "2009-04-01 12:19:23.14+05:30" i want to convert this to "April 01, 2009 - 12:19 am",
i need to convert this string into some other date format, but i tried with following way, but it is giving exception,
is there any other way to covert this....
I tried in the following way but it is not working..
K. Tsang wrote:Try removing your colon in your timezone portion. I tried it and it's not what you will expect. The timezone is wrong. It's my timezone.
Hi Tsang,
Thanks for your reply. This value i am getting from database. So i am not suppose to change this by removing the colon. Instead of i am looking for a Date Format for this.
James Basller
Ranch Hand
Joined: Sep 07, 2008
Posts: 58
posted
0
sankar sammiti wrote:Hi,
I have a string like "2009-04-01 12:19:23.14+05:30" i want to convert this to "April 01, 2009 - 12:19 am",
i need to convert this string into some other date format, but i tried with following way, but it is giving exception,
is there any other way to covert this....
I tried in the following way but it is not working..