KdjDX‖

HhMNZ‖String Function

YVCRg‖Creates a string according to the specified character, or the first character of a string expression that is passed to the function.

FVEx2‖Syntax:


SyD4X‖String (number As Long, {expression As Integer | character As String}) As String

bBBqF‖Return type:

GfqGg‖String

WADQ4‖Parameters:

XnMBZ‖ number: Numeric expression that indicates the number of characters to return in the string. The maximum allowed value of n is 2,147,483,648.

aCgW8‖ Expression: Numeric expression that defines the ASCII code for the character.

MEhYX‖ Character: Any single character used to build the return string, or any string of which only the first character will be used.

SEjHR‖Error codes:

5 Invalid procedure call

EFSA4‖Example:


Sub ExampleString
Dim sText As String
    sText = String(10,"A")
    MsgBox sText
    sText = String(10,65)
    MsgBox sText
End Sub