A
Anthony P.
Hello Everyone,
My application needs to parse some HTML. As is usual in HTML parsing,
I just need the data between two HTML tags. So here is my regular
expression:
Dim myRegex2 = New Regex("<td headers=""re2 e1"" align=""right""
valign=""bottom"">" & _
"((.|\n)*?)<sup>",
RegexOptions.IgnoreCase)
Now, this is suppose to get the text between the <td headers tag> and
the <sup> tag. But, instead, it returns the entire tag including all
of the attributes. What am I doing wrong?
Thanks!
My application needs to parse some HTML. As is usual in HTML parsing,
I just need the data between two HTML tags. So here is my regular
expression:
Dim myRegex2 = New Regex("<td headers=""re2 e1"" align=""right""
valign=""bottom"">" & _
"((.|\n)*?)<sup>",
RegexOptions.IgnoreCase)
Now, this is suppose to get the text between the <td headers tag> and
the <sup> tag. But, instead, it returns the entire tag including all
of the attributes. What am I doing wrong?
Thanks!