' URL that generated this code:
' http://txt2re.com/index-vb.php3?s=11:Jan:2019%20%22This%20is%20an%20Example!%22&-53&-9999
Imports System.Text.RegularExpressions
Module Module1
Sub Main
Dim txt As String ="11:Jan:2019 ""This is an Example!"""
Dim re1 As String="()" ' 1
Dim re2 As String=".*?" 'Non-greedy match on filler
Dim re3 As String ="""" 'Uninteresting: c
Dim re4 As String=".*?" 'Non-greedy match on filler
Dim re5 As String="("")" 'Any Single Character 1
Dim r As Regex = new Regex(re1+re2+re3+re4+re5,RegexOptions.IgnoreCase Or RegexOptions.Singleline)
Dim m As Match = r.Match(txt)
If (m.Success) Then
Dim 1=m.Groups(1)
Dim c1=m.Groups(2)
Console.WriteLine("("+1.ToString()+")"+"("+c1.ToString()+")"+"")
End If
Console.ReadLine()
End Sub
End Module
'-----
' Paste the code into a new Console Application
'-----