FormatNumberAsString |
Type | statement |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | format <Operand> as string
|
Associations | com.livecode.arithmetic |
Summary | Formats a numeric value as a string
|
Parameters | Name | Type | Description |
---|
Operand | | An expression that evaluates to a number.
|
|
Example | variable tNum as Number
variable tString as String
put 5 into tNum
format tNum as string into tString
|
Values | Name | Type | Description |
---|
The result | | Operand formatted as a string.
|
|
Description | Use FormatNumberAsString when you want to manipulate a numeric value as text.
|