Guest_imported
New member
- Jan 1, 1970
- 0
I have a string like:
*test*te*12*2*
I'd like to come up with an array like:
Arr[1] = test
Arr[2] = te
Arr[3] = 12
Arr[4] = 2
On VB this would be simple, what's the best way of doing it on Java? Some sample code would be nice.
Thank you
*test*te*12*2*
I'd like to come up with an array like:
Arr[1] = test
Arr[2] = te
Arr[3] = 12
Arr[4] = 2
On VB this would be simple, what's the best way of doing it on Java? Some sample code would be nice.
Thank you