I would like to append double quotes to strings in an array and then later join them as a single string (retaining the quotes). Is there any String library which does this?
You can create the code for this functionality yourself as well:
String output = ""; for (int i = 0; i < listOfStrings.length; i++) { listOfStrings[i] = "\"" + listOfStrings[i] + "\""; output += listOfStrings[i] + ", "; }