ToLongString

toLongString(String a)

This function converts a string to a long string.

Parameter

a - A String value.

Return value

The return value is a LongString.

Example

The return value of the following statement is a.

LongString a=toLongString("a");
string b="b";
if (b > toString(a)) then
return a
else
return toLongString(b);