Hi,
I found this example of using regex.split on the forum.
-------------
Dim text As String
text= "1,2,3,4,5,6"
Dim tempstr() As String
tempstr = Regex.Split(",", text)
label1.Text = tempstr
-------------
My problem is that no matter what I do i keep getting errors when trying to remove any of the characters:
[Ljava.lang.String;@43e48078 etc.
I'm only trying to break up a string of text e.g. 1,2,3,4,5,6 and display it without the commas.
Can anyone please help!
MMI
I found this example of using regex.split on the forum.
-------------
Dim text As String
text= "1,2,3,4,5,6"
Dim tempstr() As String
tempstr = Regex.Split(",", text)
label1.Text = tempstr
-------------
My problem is that no matter what I do i keep getting errors when trying to remove any of the characters:
[Ljava.lang.String;@43e48078 etc.
I'm only trying to break up a string of text e.g. 1,2,3,4,5,6 and display it without the commas.
Can anyone please help!
MMI