尝试解析此
时出现格式异常// input string "Wed Mar 12 2014 17:50:15 GMT+0000 (UTC)"
DateTime.Parse(response.LastActivityDate);
System.FormatException
如何解析此输入字符串? 这是什么文化?
提前谢谢你!
答案 0 :(得分:2)
在这里,有一些鱼:
string value = "Wed Mar 12 2014 17:50:15 GMT+0000 (UTC)";
value = value.Replace("GMT","").Replace("(UTC)","").Trim();
value = value.Insert(value.Length - 2, ":");
DateTime parsed = DateTime.ParseExact(value, "ddd MMM dd yyyy HH:mm:ss zzz",
CultureInfo.InvariantCulture);