我想让我的应用程序显示网站的html代码的某个部分。我想要的部分以<span> <PRE>
开头,以</PRE></span>
结尾。我考虑过使用RegEx和StringBuilder来做到这一点。
Dim Fetcher As New StringBuilder
Fetcher.AppendLine(Regex.Match((New Net.WebClient).DownloadString("https://pilotweb.nas.faa.gov/PilotWeb/notamRetrievalByICAOAction.do?method=displayByICAOs&reportType=RAW&formatType=DOMESTIC&retrieveLocId=" & ICAOCode.Text & "&actionType=notamRetrievalByICAOs"), "<span> <PRE>)").Value)
OutputBox.Text = Fetcher.ToString
它应该显示长文本,而只显示<span> <PRE>