I am trying to convert from string to date. Example: Wednesday, September 4, 2013 at 17:07.
I will first convert it to: Wednesday, September 4, 2013, 17:07
And use the following code:
SimpleDateFormat format = new SimpleDateFormat("EEEE, MMMM d, yyyy 'at' hh:mm a");
But I always get Unparseable date Exception.
Any help is appreciated!
source share