String was not recognized as a valid DateTime " format dd/MM/yyyy"
Asked Answered
W

13

219

I am trying to convert my string formatted value to date type with format dd/MM/yyyy.

this.Text="22/11/2009";

DateTime date = DateTime.Parse(this.Text);

What is the problem ? It has a second override which asks for IFormatProvider. What is this? Do I need to pass this also? If Yes how to use it for this case?

Edit

What are the differences between Parse and ParseExact?

Edit 2

Both answers of Slaks and Sam are working for me, currently user is giving the input but this will be assured by me that they are valid by using maskTextbox.

Which answer is better considering all aspects like type saftey, performance or something you feel like

Wittenberg answered 3/2, 2010 at 15:24 Comment(2)
@Edit: That's what the documentation is for. msdn.microsoft.com/en-us/library/w2sa9yss.aspxEhlers
ParseExact is for when you know the exact format of the date string, Parse is when you want something which can handle something a bit more dynamic.Lalalalage
U
314

Use DateTime.ParseExact.

this.Text="22/11/2009";

DateTime date = DateTime.ParseExact(this.Text, "dd/MM/yyyy", null);
Untwine answered 3/2, 2010 at 15:27 Comment(13)
Why we have to pass null here ?Wittenberg
Input can be "22/11/2009 12:00:00 AM" or "22/11/2009". Also the culture of the development machine can be different from the culture of the production. So will the above code work seamlessly?Aweigh
@Rahat, parse exact will not work if the format doesn't match. The format pattern above is dd/MM/yyyy so a text string with a time in it will not be parsed properly. You'll need to either strip off the time or include it in the format pattern. There's an overload of ParseExact that accepts an array of format patterns and will parse the text if it matches any of them.Untwine
@SamuelNeff Why don't you use CultureInfo.InvariantCulture instead of the current one if you are defining a format anyway?Blane
@AlvinWong, either one works fine. Since we're defining a specific format, the culture doesn't matter in this case.Untwine
I am not sure what the heck but this var text = "22/11/2009"; DateTime date = DateTime.ParseExact(text, "dd/MM/yyyy", null); throws String was not recognized as a valid DateTime. exception. You must use DateTime.ParseExact(Text, "dd/MM/yyyy", CultureInfo.InvariantCulture);Truitt
@Truitt The reason is that the slashes in the format string are not literal slashes. They are substituted by the date separator string in the current culture. So it does depend on the culture in the way it is written above. Samuel Neff, try Thread.CurrentThread.CurrentCulture = new CultureInfo("da-DK");, it will break your solution. To fix that, use "dd'/'MM'/'yyyy" (protecting the slashes with single quotes), or @"dd\/MM\/yyyy" ("escaping" the slashed with backslashes).Shaggy
If you use time ticks to get and set the date you may get benefit to not set the culture and time ticks are generally language independent. You can follow this link for ticks and parse time ticks C#Alic
@SamuelNeff your solution not work for me it gives error like " String was not recognized as a valid DateTime." and i'm passing following input date : "13/06/17" to your solution but it gives error.plz help me,,Polyandry
@GhanshyamLakhani what format string are you using? it should be "dd/MM/yy".Untwine
@JonSkeet person wanted a copy paste and go solution. This is why the correct answer gave them an error. They pasted dd/MM/yyyy while their exact string was dd/MM/yy, they then begun fixing issues with slashes :-DIngra
@SamuelNeff can you share code snippets for parseExact overload passing format pattern. Little late to the discussionScottie
@Scottie I'm not sure what you're asking. The example above includes the format pattern.Untwine
E
56

You need to call ParseExact, which parses a date that exactly matches a format that you supply.

For example:

DateTime date = DateTime.ParseExact(this.Text, "dd/MM/yyyy", CultureInfo.InvariantCulture);

The IFormatProvider parameter specifies the culture to use to parse the date.
Unless your string comes from the user, you should pass CultureInfo.InvariantCulture.
If the string does come from the user, you should pass CultureInfo.CurrentCulture, which will use the settings that the user specified in Regional Options in Control Panel.

Ehlers answered 3/2, 2010 at 15:28 Comment(7)
@Slaks: CultureInfo.InvariantCulture is not availabe in code. Do i need to use some namespaceWittenberg
using System.Globalization;Ehlers
You can also right click on the error and click resolve this will put in the missing namespace for you.Dieppe
you can also double click the error and see an arrow down showing related namespaces you can useQuartzite
Spaces count too, so for example if your string format is "MM/dd/yyyy HH:mm:ss" (note - 2 spaces) - then your format for ParseExact must also include the spacesPiggery
@Ehlers your solution not work for me it gives error like " String was not recognized as a valid DateTime." and i'm passing following input date : "13/06/17" to your solution but it gives error.Plz help me.Polyandry
This worked for me. I am testing locales and my string date "MM/dd/yyyy" was throwing on ES locale. Thank youNorvin
A
23

Parsing a string representation of a DateTime is a tricky thing because different cultures have different date formats. .Net is aware of these date formats and pulls them from your current culture (System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat) when you call DateTime.Parse(this.Text);

For example, the string "22/11/2009" does not match the ShortDatePattern for the United States (en-US) but it does match for France (fr-FR).

Now, you can either call DateTime.ParseExact and pass in the exact format string that you're expecting, or you can pass in an appropriate culture to DateTime.Parse to parse the date.

For example, this will parse your date correctly:

DateTime.Parse( "22/11/2009", CultureInfo.CreateSpecificCulture("fr-FR") );

Of course, you shouldn't just randomly pick France, but something appropriate to your needs.

What you need to figure out is what System.Threading.Thread.CurrentThread.CurrentCulture is set to, and if/why it differs from what you expect.

Aerugo answered 3/2, 2010 at 15:56 Comment(1)
your solution not work for me it gives error like " String was not recognized as a valid DateTime." and i'm passing following input date : "13/06/17" to your solution but it gives error.Plz help me.Polyandry
P
18

Although the above solutions are effective, you can also modify the webconfig file with the following...

<configuration>
   <system.web>
     <globalization culture="en-GB"/>
   </system.web>
</configuration>

Ref : Datetime format different on local machine compared to production machine

Pentastyle answered 17/11, 2012 at 13:39 Comment(2)
Amit Philips, you saved my day.. I had tried all possible things. And this small change works. Thanks.Redbreast
Amit, you are truly the son of God.Prolegomenon
M
13

You might need to specify the culture for that specific date format as in:

    Thread.CurrentThread.CurrentCulture = new CultureInfo("en-GB"); //dd/MM/yyyy

    this.Text="22/11/2009";

    DateTime date = DateTime.Parse(this.Text);

For more details go here:

http://msdn.microsoft.com/en-us/library/5hh873ya.aspx

Masoretic answered 3/2, 2010 at 17:6 Comment(0)
F
8

Based on this reference, the next approach worked for me:

// e.g. format = "dd/MM/yyyy", dateString = "10/07/2017" 
var formatInfo = new DateTimeFormatInfo()
{
     ShortDatePattern = format
};
date = Convert.ToDateTime(dateString, formatInfo);
Fukien answered 25/7, 2017 at 14:46 Comment(0)
C
6
private DateTime ConvertToDateTime(string strDateTime)
{
DateTime dtFinaldate; string sDateTime;
try { dtFinaldate = Convert.ToDateTime(strDateTime); }
catch (Exception e)
{
string[] sDate = strDateTime.Split('/');
sDateTime = sDate[1] + '/' + sDate[0] + '/' + sDate[2];
dtFinaldate = Convert.ToDateTime(sDateTime);
}
return dtFinaldate;
}
Creaturely answered 15/2, 2013 at 6:40 Comment(0)
S
5

After spending lot of time I have solved the problem

 string strDate = PreocessDate(data);
 string[] dateString = strDate.Split('/');
 DateTime enter_date = Convert.ToDateTime(dateString[1]+"/"+dateString[0]+"/"+dateString[2]);
Sensuous answered 31/3, 2014 at 5:43 Comment(2)
Works perfectly for me, I consider this the best answer as it works with dates that also have times and timezone text, which means that if its handling user-entered data it can handle various formatsLheureux
What is "PreocessDate()?Tautog
G
4

use this to convert string to datetime:

Datetime DT = DateTime.ParseExact(STRDATE,"dd/MM/yyyy",System.Globalization.CultureInfo.CurrentUICulture.DateTimeFormat)
Gaberdine answered 29/6, 2010 at 13:24 Comment(0)
P
1

Just like someone above said you can send it as a string parameter but it must have this format: '20130121' for example and you can convert it to that format taking it directly from the control. So you'll get it for example from a textbox like:

date = datetextbox.text; // date is going to be something like: "2013-01-21 12:00:00am"

to convert it to: '20130121' you use:

date = date.Substring(6, 4) + date.Substring(3, 2) + date.Substring(0, 2);

so that SQL can convert it and put it into your database.

Poignant answered 21/1, 2013 at 23:56 Comment(0)
L
1

Worked for me below code:

DateTime date = DateTime.Parse(this.Text, CultureInfo.CreateSpecificCulture("fr-FR"));

Namespace

using System.Globalization;
Linnie answered 19/9, 2016 at 10:49 Comment(0)
O
0

You can use also

this.Text = "22112009";
DateTime newDateTime = new DateTime(Convert.ToInt32(this.Text.Substring(4, 4)), // Year
                                    Convert.ToInt32(this.Text.Substring(2,2)), // Month
                                    Convert.ToInt32(this.Text.Substring(0,2)));// Day
Obligation answered 29/6, 2010 at 13:28 Comment(0)
A
0

Also I noticed sometimes if your string has empty space in front or end or any other junk char attached in DateTime value then also we get this error message

Amero answered 24/3, 2022 at 13:45 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.