Check String if the format is "yyyy-MM-dd h:mm:ss" in VB.NET

2.5k Views Asked by At

How to check if the given string is in a valid customized format "yyyy-MM-dd h:mm:ss"?

For example:

2013-09-09 05:25:40

is in a valid format.

and

09-09-2013 05:25:40

is invalid format.

1

There are 1 best solutions below

2
On BEST ANSWER

You can use DateTime.TryParseExact() for this.

if(DateTime.TryParseExact(yourDate, "yyyy-MM-dd h:mm:ss", CultureInfo.InvariantCulture, 
                       DateTimeStyles.None, out dateValue))
{
   // DateTime parsed, dateValue contains the parsed DateTime
}