NumberFormattedAsString

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Operand> formatted as string
Associationscom.livecode.arithmetic
Summary

Formats a numeric value as a string

Parameters
NameTypeDescription
Operand

An expression that evaluates to a number.

Example
variable tString as String
variable tNum as Number
put 5 into tNum
put tNum formatted as string into tString -- tString contains "5"
Values
NameTypeDescription
return

Operand formatted as a string.

Description

Use NumberFormattedAsString when you want to manipulate a numeric value as text.