then just simulate the tryparse like this

VB Code:
  1. Dim dt As Date
  2. Try
  3.   dt = Date.Parse("23 April Watevaaa...")
  4. Catch
  5.   'code for if string was not a valid date
  6. End Try