codice:
    Private Sub btn_GoID_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_GoID.Click
        Dim user_id As String = msktxt_UserID.Text
        Dim myWebClient As New System.Net.WebClient
        myWebClient.DownloadFile("url" + user_id, _
                        "C:\txt.txt")
        Dim fName As String = "C:\txt.txt"               'posizione del file
        Dim testTxt As New StreamReader(fName)
        Dim allRead As String = testTxt.ReadToEnd()     'Reads the whole text file to the end
        testTxt.Close()                'Closes the text file after it is fully read.
        Dim regMatch As String = "df_positionx="
    End Sub
A questo punto vorrei avere il valore della variabile posta dopo "df_positionx=", composta da 4 cifre, e fare lo stesso per altre variabili con lo stesso modo.

Grazie mille per la disponibilità
IAL32