BinaryToInteger (String function): Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| mNo edit summary | mNo edit summary | ||
| Line 1: | Line 1: | ||
| {{Template:String:BinaryToInteger subtitle}} | {{Template:String:BinaryToInteger subtitle}} | ||
| <var>BinaryToInteger</var> is an  | <var>BinaryToInteger</var> is an [[Intrinsic classes|intrinsic]] function that treats a string as if it were binary and converts it to an integer.  The string may contain no more than four characters. | ||
| ==Syntax== | ==Syntax== | ||
Revision as of 18:29, 2 November 2012
Convert a binary string to an integer (String class)
BinaryToInteger is an intrinsic function that treats a string as if it were binary and converts it to an integer.  The string may contain no more than four characters.
Syntax
%number = string:BinaryToInteger[( [Signed= boolean])]
Syntax terms
| %number | 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 | This is an optional, but NameRequired, argument is a boolean enumeration that indicates whether the method object string is to be converted to a signed integer or not. 
 | 
Usage notes
- The BinaryToInteger function is available as of Sirius Mods version 7.3.
Examples
- 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
- The inverse of BinaryToInteger is IntegerToBinary.