I want to compare two date formats and return \"false\" when two formats are not equal.
For example, I get two da
Try like
Dim matcher As Boolean = myString Like "??/??/????"
28/11/1997; matcher = True BUT 11/28/1997; matcher = True (is also true)
28/11/1997; matcher = True
11/28/1997; matcher = True
It works for some patterns but not for everything maybe try splitting the date into more than one variable :)