Hello everyone! Is there a way where you can extract a specific text from a website?
for example: Below is the website where I want to extract text.
Singapore Pools
I want get the numbers in the table and assign a label to display it on my application.
Below is the code I tried to get the source code, I know it displays all. Is there a way that I can add something so that I can get the specific text?
for example: Below is the website where I want to extract text.
Singapore Pools
I want get the numbers in the table and assign a label to display it on my application.
Below is the code I tried to get the source code, I know it displays all. Is there a way that I can add something so that I can get the specific text?
VB.NET:
Dim webclient As New WebClient
Dim eIP As String
eIP = System.Text.Encoding.ASCII.GetString((webclient.DownloadData("http://www.singaporepools.com.sg/en/lottery/4d_results.html")))
TextBox1.Text = eIP