//ERDDAP/com.cohort.util/ScriptString2/tokenize
tokenize
[JVM]
open fun tokenize(s: String): Array<String>
This converts a multiple-space-separated string into a String[] of separate tokens. Double quoted tokens may have internal spaces.
Return
String[] of tokens (or null if s is null)
Parameters
JVM
s | the space-separated string |