//ERDDAP/com.cohort.util/ScriptString2/toSSVString
toSSVString
[JVM]
open fun toSSVString(ar: Array<Any>): String
Generates a space-separated-value string.
WARNING: This is simplistic. It doesn't do anything special for strings with internal spaces.
Return
a SSV String with the values with " " after all but the last value. Returns null if ar is null. null elements are represented as "[null]".
Parameters
JVM
ar | an array of objects (for an ArrayList or Vector, use o.toArray()) |