I have it:
Dim split As String() = temp_string.Split(",") ''#feed all info into global variables patient_id = split(0) doc_name = split(1) lot__no = split(2) patient_name = split(3)
how to clear all split () contents?
Array.Clear(split, 0, split.Length)
ReDim split(-1)
. , . , .
Nothing, . , , .
Nothing
split = Nothing
, , , , , , .