I have a large text file and I'm trying to pull data from it. "SummaryList" is common to all the files and is the text line just above the data I need.

The data I need to pull looks like this, with spaces between them...
0 188 22 33 44838

I got as far as finding the "SummaryList", but can't figure out how to get to the next line and to parse it. Any help greatly appreciated! thanks.

Code:
Dim SummaryList As String = "SummaryList"
Dim SummaryListSearch() As String = System.IO.File.ReadAllLines(ReadKlarf)
                For Each line As String In SummaryListSearch
                    If line.Contains(SummaryList) Then
                        'MsgBox("jjjj")
                    End If
                Next