Hi,

If I have a vector of dates

   v1 = ["96/15/03", "15/15/03"]

Using DateTime, it gives

    DateTime(v1, "yy/dd/mm")
    #2-element Array{DateTime,1}:
    #0096-03-15T00:00:00
    #0015-03-15T00:00:00

How do I get

     1996-03-15T00:00:00 and 2015-03-15T00:00:00

Thanks

Reply via email to