String

Converts a variable to the string format.

You can also use this function to revert a string list back to a string. The elements of the list are separated by [CRLF].

SYNTAX
String(valueToConvert) 
ARGUMENTS valueToConvert The variable to convert (alphanumeric, numeric, or a string list)
RETURN Converted string
EXAMPLE
SYNTAX
 String(valueToConvert)
 
ARGUMENTS
 valueToConvert
 The variable to convert (alphanumeric, numeric or a string list)
 
 
RETURN
 Converted string
 
EXAMPLE
 i=5

s=String(i)

;

StringlistAdd("StrList","Kofax CCM","Kerkenbos 10-129","6546 BJ Nijmegen")

Address=String("StrList")