I have this string:

Fri, 13 Jan 2012 04:26:42 PST

I tries to parse it like that:

DateTime.TryParse("Fri, 13 Jan 2012 04:26:42 PST", out date)

Or like that:

Convert.ToDateTime("Fri, 13 Jan 2012 04:26:42 PST")

And it throws to me:

MESSAGE: The string was not recognized as a valid DateTime. There is an unknown word starting at index 26.

Any idea what is wrong and how can I fix it?

link|improve this question

79% accept rate
4  
PST is not recognized as a valid part of a DateTime string. – Oded Jan 14 at 11:00
Its not a timezone? – nir Jan 14 at 11:02
2  
It is not in a recognized format. Timezones that are recognized in strings for parsing would have the format +0700 or -00:30, for example. The .NET framework does not recognize named timezones like PST or GMT. – Oded Jan 14 at 11:04
So how to handle it? Replace the PST to -08:00? – nir Jan 14 at 11:07
That would be one approach. That's how I answered. – Oded Jan 14 at 11:09
show 1 more comment
feedback

2 Answers

up vote 0 down vote accepted

With named timezones, you can create a dictionary that maps the names to the actual timezone difference in the format recognized - then, use this dictionary to replace named timezones with their recognized format.

At this point you will have a string that can be parsed by the framework.

Dictionary<string,string> namedToActualTZ = new Dictionary<string,string>();
namedToActualTZ.Add("PST", "-0800");
link|improve this answer
feedback

its impossible to do it by default function such as , convert , format .. etc.you should write a function to parse it manualy.in it ,extract the weekday & time & date ... then create a valid date string or directly a date variable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.