Hello,
I am a beginner at VB but have experience with Java. Anyway, I have an array of strings and its contents are:
array(0) is: a=0
array(1) is: b=0
array(2) is: c=0
and so on all the way up to letter Z....
How can I split each element into a 2d array. For instance:
array(0,0)=a
array(0,1)=0
array(1,0)=b
array(1,1)=0
and so on....
If I were doing this in java I would have used a tokenizer with different delimiters. I have read that I can use the split method but I tried it and I seem to be having trouble.
I have been trying to figure this out for like a week so any help would be greatly appreciated!!!
I am a beginner at VB but have experience with Java. Anyway, I have an array of strings and its contents are:
array(0) is: a=0
array(1) is: b=0
array(2) is: c=0
and so on all the way up to letter Z....
How can I split each element into a 2d array. For instance:
array(0,0)=a
array(0,1)=0
array(1,0)=b
array(1,1)=0
and so on....
If I were doing this in java I would have used a tokenizer with different delimiters. I have read that I can use the split method but I tried it and I seem to be having trouble.
I have been trying to figure this out for like a week so any help would be greatly appreciated!!!