tags:

views:

73

answers:

1

Okay, so I have this string, it's "x/y". How can I use the split function to rid the / and assign the x to myVariable and assign the y to myVariable2

+2  A: 
dim MyVariable as string = xystring.split("/")(0)
dim MyVariable2 as string = xystring.split("/")(1)
I'm a moron, lol. Thanks a bunch.
Josh streit