Dim myDelims As String() = New String() {"<beginning of record>"}
Dim split1 As String() = temp_string.Split(myDelims, StringSplitOptions.None)
For Each s As String In split1
If InStr(s, lot__no) Then
for some reason, the first s in split1 is giving a value of "". there's nothing in it. why is it starting ONE before the first element?