How can i parse a Vector to a normal String?
i.e
Vector newfollowerlist = "name1, name2, name3, name4";
As soon i output the vector string it looks like this;
[name1, name2, name3, name4]
and i want to delete the [] of the line so i thought about parsing the vector string to a normal String and delete the [] by:
String stringWithoutArraySymbols = String VectorHolder.replaceAll("[","");
String stringWithoutArraySymbols = String VectorHolder.replaceAll("]","");
How can i actually parse it or is there an easier way to do this?
Vector?? This type has been deprecated for a number of decades. And what do you mean by "parse into aString"? You can parse aStringinto a structure or you can format a structure into aString. Please elaborate...