Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given the following 2 strings notice the ".185" and ",185"

  • 2011-09-15 17:05:37,185
  • 2011-09-15 17:05:37.185

Reading from a file (not in my control) and I can see they have dates in both formats. I need to create a function that cater for both scenarios.

Is the '.' and ',' a culture specific?

Any suggestion for such a function?

This below is not working as I don't get a date.

 class Program
{
    static void Main(string[] args)
    {
        string date1="2011-09-15 17:05:37.185";
        string date2="2011-09-15 17:05:37,185";

        const string format1 = "dd/MM/yyyy HH:mm:ss.ff";
        const string format2 = "dd/MM/yyyy HH:mm:ss,ff";
        DateTime resultDate1;
        DateTime resultDate2;
        DateTime.TryParseExact(date1, format1, CultureInfo.InvariantCulture, DateTimeStyles.None, out resultDate1);
        DateTime.TryParseExact(date2, format2, CultureInfo.InvariantCulture, DateTimeStyles.None, out resultDate2);
         Console.WriteLine(resultDate1.ToString());
         Console.WriteLine(resultDate2.ToString());
         Console.Read();
     }
  }
share|improve this question
4  
Use DateTime.TryParseExact(). – Hans Passant Oct 2 '11 at 16:35
1  
I think . and , are culture specific – Ahmed Said Oct 2 '11 at 16:39
see my edited question I dont get a date at all – user231465 Oct 2 '11 at 16:40
@user231465, that's just sloppy. dd/MM... and 2011-09... don't match. :) – bzlm Oct 2 '11 at 16:42
@bzlm .Wrote quickly.I am reading a file that is not in my control and date1 and date2 is how it's written in this file.Do you have any suggestion how to best read those dates? – user231465 Oct 2 '11 at 16:47

2 Answers

up vote 6 down vote accepted

Is the . and , a culture specific?

Yes. In Europe, a comma is often used instead of a period as the decimal separator.

Any suggestion for a solution?

Yes. My first thought is that the DateTime.ParseExact()/DateTime.TryParseExact() functions have an overload that allows an array of formats to test. You could include both the en-US variant and the en-GB variant. Except that I don't think this will work, as you still only get to include a single culture specifier. So instead, I recommend calling .Replace() before passing the string to ParseExact function to change any commas that might be in the string to periods.

In your updated example code, your format string just doesn't match your example dates. You should use this:

yyyy-MM-dd HH:mm:ss.fff

share|improve this answer
thanks for your reply. Edited my question with an example.What Am I doing wrong? – user231465 Oct 2 '11 at 16:41
@JoelCoehom.Thanks. Read article and helped + suggestion dateFormat.Thank you – user231465 Oct 2 '11 at 16:51
1  
@user231465, use the tab completion when writing @ replies. :) – bzlm Oct 2 '11 at 16:54

You should use DateTime.ParseExact or .TryParseExact as suggested in Hans Passant's comment.

DateTime d1;
string[] formats = new [] { "yyyy-MM-dd HH:mm:ss.fff", "yyyy-MM-dd HH:mm:ss,fff" };
DateTime.TryParseExact(s1, formats, CultureInfo.InvariantCulture, 
                    DateTimeStyles.None, out d1);

You should also specify CultureInfo.InvariantCulture, as otherwise the ParseExact method may use a culture-specific date separator (in place of /, e.g. "." in Germany) or time separator (in place of ":").

share|improve this answer
Thanks.After read the article as suggested in previous answer I did exactly what you suggested. – user231465 Oct 2 '11 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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