Difference between revisions of "MC-Basic:TYPEOF"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:TYPEOF to MC-Basic:TYPEOF: Global renaming of Axystems: namespace into (Main):)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:TYPEOF}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 34: Line 35:
  
 
|EXAMPLE=
 
|EXAMPLE=
?TYPEOF(“…”)                             ‘ returns 0
+
?TYPEOF(“…”)                         ‘ returns 0
  
?TYPEOF(TOASCII8$(“…”))       ‘ returns 1
+
?TYPEOF(TOASCII8$(“…”))         ‘ returns 1
  
?TYPEOF(TOUTF8$(“…”))          ‘ returns 2
+
?TYPEOF(TOUTF8$(“…”))         ‘ returns 2
  
 
|SEE ALSO=
 
|SEE ALSO=
Line 45: Line 46:
 
* [[MC-Basic:TOUTF8$|TOUTF8$]]
 
* [[MC-Basic:TOUTF8$|TOUTF8$]]
  
[[Category:Axystems:MC-Basic:String_Manipulation|TYPEOF]]
+
[[Category:MC-Basic:String Manipulation|TYPEOF]]
 
}}
 
}}

Latest revision as of 09:47, 2 May 2017

Language: English  • 中文(简体)‎

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

See Also