String$()

Last Modified: 9/9/2021

Returns a String of the specified character at the specified length.

Arguments

NameTypeRequiredDescription
Character String Yes The charactor or symbol you want to make the String out of.
Length Integer, Long, Constant Yes The amount of times you want to insert the character into the String.

Example

Syntax: String$(<Character>, <Length>)
    b$ = String$("X",10)
    Print b$