Dim website As String = "http://vb4arb.com/"
Dim html As String = System.Text.Encoding.UTF8.GetString(New Net.WebClient().DownloadData(website))
Dim title As String = System.Text.RegularExpressions.Regex.Match(html, "(?<=<title*?>)[^*]*(?=</*?title>)").Value
MsgBox(title)
Dim website As String = "http://vb4arb.com/"
Dim html As String = New Net.WebClient() With {.Encoding = System.Text.Encoding.UTF8}.DownloadString(website)
Dim title As String = System.Text.RegularExpressions.Regex.Match(html, "(?<=<title*?>)[^*]*(?=</*?title>)").Value
MsgBox(title)
Dim html As String = System.Text.Encoding.UTF8.GetString(New Net.WebClient().DownloadData(website))
Dim title As String = System.Text.RegularExpressions.Regex.Match(html, "(?<=<title*?>)[^*]*(?=</*?title>)").Value
MsgBox(title)
Dim website As String = "http://vb4arb.com/"
Dim html As String = New Net.WebClient() With {.Encoding = System.Text.Encoding.UTF8}.DownloadString(website)
Dim title As String = System.Text.RegularExpressions.Regex.Match(html, "(?<=<title*?>)[^*]*(?=</*?title>)").Value
MsgBox(title)
