Text - script and chart function
Text() forces the expression to be treated as text, even if a numeric interpretation is possible.
Syntax:
Text (expr)
Return data type: string
Argument | Description |
---|---|
expr | An expression to be treated as text. |
Example | Results |
---|---|
Text( 1234 ) | Returns 1234 as a string. There is no numeric value. |
Text( pi( ) ) | Returns 3.1415926535898 as a string. There is no numeric value. |
String | Number |
---|---|
1234 |