I have string like this:
Mon, 14 May 2012 13:56:38 GMT
Now I just want only date i.e. 14 May 2012
What should I need to do for that?
|
I have string like this:
Now I just want only date i.e. What should I need to do for that? |
||||
|
The proper way to do it is to parse it into a
Output:
This code is
than any solution relying on splitting strings, substrings on fixed indexes or regular expressions. |
||||
|
|
|
Why don't you Something like this...
Might be a little bit lengthy to write, but at least you end up with a |
|||||||||||
|
|
Since that is a fixed length string you can use
|
|||
|
|
You can use this:
|
|||||
|
Dateobject, or are you asking about how to strip the string (i.e., using a regex)? – andersoj May 15 '12 at 13:08