I often like to assign the individual fields from a delimited string into their own variables. This is easily done in perl like this (algorithmically):
if the string $A is "one/two/three", I can assign three variables in one step like this:
(first, second, third) = split($A,"/")
Is there any way this can be accomplished similarly in VB.net?









































