Class Java

    • Method Detail

      • join

        public static String join​(Object[] a,
                                  String separator)
        Returns:
        null iff a == null, or "" iff a.length == 0, or the elements of a, converted to strings concatenated and separated with the separator
      • join

        public static String join​(Object[] a,
                                  String separator,
                                  int off,
                                  int len)
        Returns:
        null iff a == null, or "" iff off >= len, or element off ... len-1 of a, converted to strings concatenated and separated with the separator