Difference between revisions of "BIN2I()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to convert a binary encoded string to a numeric
 
Function to convert a binary encoded string to a numeric
 
  
 
==Syntax==
 
==Syntax==
 
BIN2I(<expC>)
 
BIN2I(<expC>)
 
  
 
==See Also==
 
==See Also==
[[CREATE BRIDGE]], [[BIN2L()]], [[BIN2W()]], [[BINCLOSE()]], [[BINCREATE()]], [[BINOPEN()]], [[BINREAD()]], [[BINSEEK()]], [[BINWRITE()]], [[I2BIN()]], [[L2BIN()]]
+
[[BIN2L()]], [[BIN2W()]], [[BINCLOSE()]], [[BINCREATE()]], [[BINOPEN()]], [[BINREAD()]], [[BINSEEK()]], [[BINWRITE()]], [[I2BIN()]], [[L2BIN()]]
 
+
  
 
==Description==
 
==Description==
 
The BIN2I() function converts a binary encoded string, formatted as a 16-bit signed integer, into an integer.  The <expC> is a string, two bytes in length, containing a binary numeric value.  All binary conversion functions may be used in conjunction with the binary file functions.
 
The BIN2I() function converts a binary encoded string, formatted as a 16-bit signed integer, into an integer.  The <expC> is a string, two bytes in length, containing a binary numeric value.  All binary conversion functions may be used in conjunction with the binary file functions.
 
  
 
==Example==
 
==Example==
Line 21: Line 17:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
[[Category:Expressions and Type Conversion]]
 
[[Category:Expressions and Type Conversion]]
 
[[Category:Expressions and Type Conversion Functions]]
 
[[Category:Expressions and Type Conversion Functions]]

Revision as of 10:56, 9 February 2012

Purpose

Function to convert a binary encoded string to a numeric

Syntax

BIN2I(<expC>)

See Also

BIN2L(), BIN2W(), BINCLOSE(), BINCREATE(), BINOPEN(), BINREAD(), BINSEEK(), BINWRITE(), I2BIN(), L2BIN()

Description

The BIN2I() function converts a binary encoded string, formatted as a 16-bit signed integer, into an integer. The <expC> is a string, two bytes in length, containing a binary numeric value. All binary conversion functions may be used in conjunction with the binary file functions.

Example

? bin2i(i2bin(987))
       987