Difference between revisions of "MC-Basic:TYPEOF"
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= TYPEOF(''<string>'') |AVAILABILITY= Avilable since version 4.5.10 |DESCRIPTION= This function returns a number representing the type of the s…') |
m (1 revision) |
(No difference)
|
Revision as of 16:10, 13 December 2010
This function returns a number representing the type of the string (0 for no-type, 1 for ASCII-8, or 2 for UTF-8).
Syntax
TYPEOF(<string>)
Availability
Avilable since version 4.5.10
Type
<string>: String
<return value>: Long
Range
<string>: string
<return value>: 0, 1, 2
Scope
Configuration, Task or Terminal
Limitations
Read-Only
Examples
?TYPEOF(“…”) ‘ returns 0
?TYPEOF(TOASCII8$(“…”)) ‘ returns 1
?TYPEOF(TOUTF8$(“…”)) ‘ returns 2