I have a date string "Sunday, February 28, 2010" that I would like to convert to a js date object formatted @ MM/DD/YYYY but don't know how. Any suggestions?
|
I would grab date.js or else you will need to roll your own formatting function. |
|||
|
If you're running with jQuery you can use the datepicker UI library's parseDate function to convert your string to a date:
and then follow it up with the formatDate method to get it to the string format you want
If you're not running with jQuery of course its probably not the best plan given you'd need jQuery core as well as the datepicker UI module... best to go with the suggestion from Segfault above to use date.js. HTH |
|||||
|
The Also the code is lacking any error checking which should be added. (String not matching the regular expression, non existent months, etc.) |
|||
|
|