.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT LANGUAGE


Examples: Str function
' Assign the strings " 123" and "-123" to the variables
' string1 and string2, respectively. For the positive value,
' note the addition of a leading space.
Dim string1 As String, string2 As String
string1$ = Str$(123)               ' Assigns " 123"
string2$ = Str$(-123)              ' Assigns "-123"
Print string2$; string1$
' Output:
' -123 123

See Also