Difference between revisions of "I2BIN()"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to convert numeric to binary encoded character string
 
Function to convert numeric to binary encoded character string
 
  
 
==Syntax==
 
==Syntax==
 
I2BIN(<expN>)
 
I2BIN(<expN>)
 
  
 
==See Also==
 
==See Also==
[[BIN2I()]], [[BIN2L()]], [[BIN2W()]], [[BINCLOSE()]], [[BINCREATE()]], [[BINOPEN()]], [[BINREAD()]], [[BINSEEK()]], [[BINWRITE()]], [[CREATE BRIDGE]], [[L2BIN()]]
+
[[BIN2I()]], [[BIN2L()]], [[BIN2W()]], [[BINCLOSE()]], [[BINCREATE()]], [[BINOPEN()]], [[BINREAD()]], [[BINSEEK()]], [[BINWRITE()]], [[L2BIN()]]
 
+
  
 
==Description==
 
==Description==
 
The I2BIN() function converts a numeric value into a binary encoded character string formatted as an unsigned 16-bit integer.  The <expN> is any numeric value.  Any decimal places are ignored.
 
The I2BIN() function converts a numeric value into a binary encoded character string formatted as an unsigned 16-bit integer.  The <expN> is any numeric value.  Any decimal places are ignored.
  
This function can be used to construct composite index keys of mixed data types in OpenVMS RMS files.  With the exception of the BIN2W(), all binary conversion functions may be used in conjunction with the binary file access functions.
+
With the exception of the BIN2W(), all binary conversion functions may be used in conjunction with the binary file access functions.
 
+
  
 
==Example==
 
==Example==
Line 23: Line 19:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Expressions and Type Conversion]]
+
[[Category:Formatting Functions]]
[[Category:Expressions and Type Conversion Functions]]
+
[[Category:Lianja VFP Extensions]]
 +
[[Category:VFP Function Extensions]]

Latest revision as of 08:09, 4 February 2013

Purpose

Function to convert numeric to binary encoded character string

Syntax

I2BIN(<expN>)

See Also

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

Description

The I2BIN() function converts a numeric value into a binary encoded character string formatted as an unsigned 16-bit integer. The <expN> is any numeric value. Any decimal places are ignored.

With the exception of the BIN2W(), all binary conversion functions may be used in conjunction with the binary file access functions.

Example

? bin2i(i2bin(987))
       987