<%@ LANGUAGE="VBSCRIPT" %>
<%
Dim txt
txt ="11:Feb:2019 ""This is an Example!"""
Dim re1
re1 =".*?"
Dim re2
re2 ="(""This is an Example!"")"
Dim r
Set r = New RegExp
r.Pattern = re1+re2
r.IgnoreCase = True
Dim m
Set m = r.Execute(txt)
If m.Item(0).SubMatches.Count > 0 Then
Dim string1
string1=m.Item(0).SubMatches.Item(0)
Response.Write("("+Replace(string1,"<","<")+")"+"")
End If
%>
-->
-->
-->
|