Parsing and validating string dates

Parsing and validating string dates

If you have a string variable that should specify a date (asked in input to the user, for example), you can parse the string and get a Date variable by using the Date.Parse method. If the input string is not in a valid format, this method throws an exception though. Follows a routine that parses a string and sets a Date variable passed in input by reference, or returns False if the input string could not recognized as a valid date:

' Set the input Date variable by parsing the input string' Return true if the input string is not in a valid format' Example:'   Dim testDate As Date'   If String2Date(testDate, "12/25/2002") = True Then'       MessageBox.Show(testDate.ToLongDateString())'   Else'       MessageBox.Show("Invalid input date string")'   End If'   If String2Date(testDate, "12/35/2002") = True Then'       MessageBox.Show(testDate.ToLongDateString())'   Else'       MessageBox.Show("Invalid input date string")'   End IfFunction String2Date(ByRef retDate As Date, ByVal value As String) As Boolean    Try        retDate = Date.Parse(value)        Return True    Catch e As Exception        Return False    End TryEnd Function

You can write similar functions for other data types of course.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes