MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / unsplit

Method unsplit

Astronomy_/src/main/java/astroj/FitsJ.java:1573–1582  ·  view source on GitHub ↗

Unsplits a string. @param arr A String array @param sep The desired separator.

(String[] arr, String sep)

Source from the content-addressed store, hash-verified

1571 * @param sep The desired separator.
1572 */
1573 public static String unsplit(String[] arr, String sep) {
1574 if (arr == null) {
1575 return "";
1576 }
1577 String s = arr[0];
1578 for (int i = 1; i < arr.length; i++) {
1579 s += sep + arr[i];
1580 }
1581 return s;
1582 }
1583
1584
1585 /********************************** DATE, TIME, JD ROUTINES ***********************************************/

Callers 1

putHeaderMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected