Parsing HTML with Regex
Hello Everyone and thanks for your help in advance. I am in need of writing a Regex expression that parse a web page. However, I am having problems getting the Regex right in order to match. Bascially, the pattern starts with
<TD ALIGN="left"
and ends with
<BR><BR>
Between the starting and ending tags, there are other links and HTML tags, including numerous special characters. My latest try was:
MatchPattern = "[\<]TD ALIGN[a-z\%\=\:\ \#\&0-9\" & Chr(34) & "\>\<\/\.\\_\?\&\,\(\)\-\" & Chr(13) & "]*[\<BR\>]"
without success. Any help on this issue would be greatly appreciated. Thanks.
|