//ERDDAP/com.cohort.util/ScriptString2/removeNullOrEmpty
removeNullOrEmpty
[JVM]
open fun removeNullOrEmpty(sar: Array<String>): Array<String>
This returns a String[] with just non-null and non-"" strings from the original array.
Return
a new String[] with just non-null and non-"" strings. sar=null returns null.
Parameters
JVM
sar | is a String[] |