//ERDDAP/com.cohort.util/ScriptString2/makeString
makeString
[JVM]
open fun makeString(ch: Char, length: Int): String
This makes a new String of specified length, filled with ch. For safety, if length>=1000000, it returns "".
Return
a String 'length' long, filled with ch. If length <0 or >= 1000000, this returns "".
Parameters
JVM
ch | the character to fill the string |
length | the length of the string |