From 61173c1b58efa79c0ba6b08348d2796a249d0186 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Sat, 1 Sep 2012 09:51:27 -0500 Subject: move help structure one directory up Change-Id: Ie970e39fbb6795a92d9fdd13510409d7dcd071bc --- source/text/sbasic/shared/03120103.xhp | 68 ++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 source/text/sbasic/shared/03120103.xhp (limited to 'source/text/sbasic/shared/03120103.xhp') diff --git a/source/text/sbasic/shared/03120103.xhp b/source/text/sbasic/shared/03120103.xhp new file mode 100644 index 0000000000..725610b571 --- /dev/null +++ b/source/text/sbasic/shared/03120103.xhp @@ -0,0 +1,68 @@ + + + + + + + + +Str Function [Runtime] +/text/sbasic/shared/03120103.xhp + + +Sun Microsystems, Inc. +converted from old format - fpe + + + +
+Str function + +Str Function [Runtime] +Converts a numeric expression into a string. +
+Syntax: +Str (Expression) +Return value: +String +Parameters: + +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 ExampleStr +Dim iVar As Single +Dim sVar As String +iVar = 123.123 +sVar = LTrim(Str(iVar)) +Msgbox sVar & chr(13) & Str(iVar) +end sub + +
-- cgit