Hi all!

I'm almost finished with a little project, I just need to add some live Grand Exchange market data. Could somebody help me out please with displaying the current price of an object in a textbox/label please. I've been struggling with this for a couple of days now so, this is a last resort. :| If I ever release my project publicly, I'll be sure to give you credit.

Thanks so much for the help, and may Saradomin bless your soul (if you believe in that crap)

Code:
Private Sub Scrape()

        Try

            Dim strURL As String = "*******services.runescape.****m=itemdb_rs/api/catalogue/detail.json?item=1042"

            Dim strOutput As String = ""

            Dim wrResponse As WebResponse
            Dim wrRequest As WebRequest = HttpWebRequest.Create(strURL)

            txtScrape.Text = "Extracting..." & Environment.NewLine

            wrResponse = wrRequest.GetResponse()

            Using sr As New StreamReader(wrResponse.GetResponseStream())
                strOutput = sr.ReadToEnd()
                sr.Close()
            End Using

            txtScrape.Text = strOutput


            strOutput = Regex.Replace(strOutput, "**everything before and after current price**", "")