//ERDDAP/com.cohort.util/ScriptString2/csvToIntArray
csvToIntArray
[JVM]
open fun csvToIntArray(csv: String): Array<Int>
This converts a comma-separated-value String into an int[]. Invalid values are converted to Integer.MAX_VALUE.
Return
the corresponding int[]. csv=null returns null. csv="" is converted to int[1]{Integer.MAX_VALUE}.
Parameters
JVM
csv | the comma-separated-value String. |