Str Function [Runtime]/text/sbasic/shared/03120103.xhpSun Microsystems, Inc.converted from old format - fpeStr functionStr Function [Runtime]Converts a numeric expression into a string.Syntax:Str (Expression)Return value:StringParameters: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).Example:Sub ExampleStrDim iVar As SingleDim sVar As StringiVar = 123.123sVar = LTrim(Str(iVar))Msgbox sVar & chr(13) & Str(iVar)end sub