how convert array into string code example

Example 1: js array to string

var myArray = ['no','u'];
var myString = myArray.toString();

Example 2: java string array to one string

public class ArrayOfStrings {
   public static void main(String args[]) {
      String stringArray[] = {"Hello ", " how", " are", " you", " welcome", " to", " Tutorialspoint"};
      StringBuffer sb = new StringBuffer();
      for(int i = 0; i < stringArray.length; i++) {
         sb.append(stringArray[i]);
      }
      String str = sb.toString();
      System.out.println(str);
   }
}

Example 3: array to string javascript

<array>.join(<splitting character(s)>);

Tags:

Java Example