Vector to String Array
Hello all...How can i convert a vector to a string array?
[71 byte] By [
McPheea] at [2007-11-26 21:46:47]

If it's inserted into the vector as a String, then the toArray() method is exactly what you want. Otherwise, a simple for loop doing a "array[i] = thing.toString()" bit ought to do nicely.