BinaryToInteger (String function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 4: Line 4:
The string may contain no more than four characters.
The string may contain no more than four characters.


The BinaryToInteger function is available as of version 7.3 of the <var class=product>Sirius Mods</var>.
The <var>BinaryToInteger</var> function is available as of version 7.3 of the <var class=product>Sirius Mods</var>.
==Syntax==
==Syntax==
{{Template:String:BinaryToInteger syntax}}
{{Template:String:BinaryToInteger syntax}}
Line 18: Line 18:


==Usage notes==
==Usage notes==
*The inverse of the BinaryToInteger method is [[IntegerToBinary (Float function)|IntegerToBinary]].
*The inverse of the <var>BinaryToInteger</var> method is [[IntegerToBinary (Float function)|IntegerToBinary]].


==Examples==
==Examples==

Revision as of 15:32, 19 January 2011

Convert a binary string to an integer (String class)


This intrinsic function treats a string as if it were binary and converts it to an integer. The string may contain no more than four characters.

The BinaryToInteger function is available as of version 7.3 of the Sirius Mods.

Syntax

%number = string:BinaryToInteger[( [Signed= boolean])]

Syntax terms

%num A numeric variable to receive the integer value of the method object string.
string A binary string value. The string's length must be four characters or less, but greater than zero.
Signed=bool This name-required argument ('Signed') is a boolean value that indicates whether the method object string is converted to a signed integer. If 'True', the method object is treated as if it were preceded by a negative sign, a two's complement conversion is performed, and the returned value is preceded by a negative sign, Signed is an optional argument that defaults to 'False', which produces an unsigned conversion.

Usage notes

Examples

Several examples follow.

  • The following statement displays '240':
   printText {'0':binaryToInteger}
  • The following statement displays '61680':
   printText {'00':binaryToInteger}
  • The result of the following pair of statements is '-3856':
   %string = '00'
   printText {%string:binaryToInteger(signed=true)}
  • The result of the following pair of statements is '0':
   %string = '00':hexToString
   printText {%string:binaryToInteger}

See also

List of intrinsic String methods