Str()

Syntax

Result$ = Str(Value.q)
Description
Convert a signed quad number into a string.

Parameters

Value.q The value to convert.

Return value

A string holding the converted value.

Remarks

Floats must be converted with StrF(), doubles with StrD() and unsigned numbers with StrU(). It is possible to omit this command when concatenating string and integer, it will then use the default behaviour of Str().

Example

  Value.q = 100000000000000001
  Debug "Result: " + Str(Value)

See Also

Val(), Hex(), Bin(), StrF(), StrD(), StrU(), FormatNumber()

Supported OS

All

<- Space() - String Index - StrD() ->