Difference between revisions of "MC-Basic:BIN$"
(Created page with '{{MC-Basic |SHORT FORM= |SYNTAX= BIN$(<''number''>) |AVAILABILITY= Versions 4.0.0 and higher |DESCRIPTION= BIN$ returns the string representation of a number in a binary fo…') |
|||
(15 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Languages|MC-Basic:BIN$}} | ||
{{MC-Basic | {{MC-Basic | ||
|SHORT FORM= | |SHORT FORM= | ||
Line 7: | Line 8: | ||
|AVAILABILITY= | |AVAILABILITY= | ||
− | + | Since Version 4.0.0 | |
|DESCRIPTION= | |DESCRIPTION= | ||
Line 35: | Line 36: | ||
|EXAMPLE= | |EXAMPLE= | ||
− | -->myStr = Bin$(58699) | + | -->myStr = Bin$(58699)<br> |
+ | -->?myStr<br> | ||
+ | 1110010101001011<br> | ||
− | |||
− | |||
− | |||
|SEE ALSO= | |SEE ALSO= | ||
− | * [[ | + | * [[MC-Basic:HEX$|HEX$]] |
}} | }} | ||
+ | |||
+ | [[Category:MC-Basic:String Manipulation|BIN$]] |
Latest revision as of 07:04, 24 April 2017
Language: | English • 中文(简体) |
---|
BIN$ returns the string representation of a number in a binary format.
Syntax
BIN$(<number>)
Availability
Since Version 4.0.0
Type
<return value>: String
<number>: Long
Range
<return value>: N/A
<number>: MinLong to MaxLong
Scope
Configuration, Task or Terminal
Examples
-->myStr = Bin$(58699)
-->?myStr
1110010101001011