Str Function

Converts a numeric expression into a string.

தொடரமைப்பு:

Str (Expression)

Return value:

String

அளவுருக்கள்:

Expression: Any numeric expression.

The Str function converts a numeric variable, or the result of a calculation into a string. Negative numbers are preceded by a minus sign. Positive numbers are preceded by a space (instead of the plus sign).

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:

Sub ExampleStr

Dim iVar As Single

Dim sVar As String

    iVar = 123.123

    sVar = LTrim(Str(iVar))

    MsgBox sVar & chr(13) & Str(iVar)

End Sub