I am parsing a date that is in a string format and would like to convert it to a date and time format, but I cannot figure out how to do this. The date is displayed as such;
Wed April 18 08:00:04 +08:00 2012
and would like in a simple way
2012-04-18 08:00:00
the code:
Dim postDate As DateTime
Dim provider As CultureInfo = CultureInfo.InvariantCulture
contentDate = Regex.Replace(contentDate, "\+", "")
Dim format As String = "ddd MMMM dd HH:mm:ss zzz yyyy"
postDate = DateTime.ParseExact(contentDate, format, provider)
contentDate = postDate.ToString("yyyy-MM-dd hh:mm:ss tt")
any ideas appreciated
source
share