|
-
Nov 20th, 2006, 03:46 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] Delete string split symbol
Hello,
I have the following string in Cooridnates:
(0,0,11,11)#(1,1,22,334)#(34,54,55,66)
With the following code I delete the last coordinates:
VB Code:
strCoordinates = Coordinates.Split("#")
strCoordinates(counter) = ""
Coordinates = Join(strCoordinates, "#")
TextBox1.Text = Coordinates
The coordinates now look like this:
(0,0,11,11)#(1,1,22,334)#
However they should look like this:
(0,0,11,11)#(1,1,22,334)
How do I get rid of the LAST "#"???
Thanks in advance guys
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|