Lumapit sa pangunahing nilalaman

//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

chthe character to fill the string
lengththe length of the string