parse line into array?

kingheart

Member
Joined
Aug 30, 2009
Messages
11
Programming Experience
Beginner
VB.NET:
Dim textstring as String="Separate This Line By Space"

i want to separate the line by space and store each word into an ArrayList
i am new to VB i have done it in PHP(!) with explode function . but what in VB?

a quick answer will really help
 
VB.NET:
        Dim textstring As String = "Separate This Line By Space"
        Dim IndividualWords() As String = textstring.Split(" "c)
 
Back
Top