Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I have situation where i am reading a list in text in following form:

[string1];[string2];[string3];[string4]

 

I want to extract "string1" "string2" etc

 

I did a split using ;...code follows

 

Dim strstring21 As String = pretext(2)

Dim s21() As String = Split(strstring21, ";")

For x = LBound(s21) To UBound(s21)

linkpos(x) = s21(x)

Next

 

THEN I need to remove left and right brackets from the strings in linkpos array. Ideas?

 

Thanks

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...