Unit 'StrUtils' Package
[Overview][Resource strings][Constants][Types][Procedures and functions][Index] [#rtl]

IntToBin

Converts an integer to a binary string representation, inserting spaces at fixed locations.

Declaration

Source position: strutils.pp line 229

function IntToBin(

  Value: LongInt;

  Digits: Integer;

  Spaces: Integer

):string;

function IntToBin(

  Value: LongInt;

  Digits: Integer

):string;

function IntToBin(

  Value: Int64;

  Digits: Integer

):string;

Arguments

Value

  

Value to convert.

Digits

  

Number of bits in the resulting string.

Spaces

  

Number of digits after which to insert a space.

Function result

Resulting string.

Arguments

Value

  

Value to convert.

Digits

  

Number of bits in the resulting string.

Arguments

Value

  

Value to convert.

Digits

  

Number of bits in the resulting string.

Description

IntToBin converts Value to a string with it's binary (base 2) representation. The resulting string contains Digits digits, with spaces inserted every Spaces digits. Spaces equal to zero yields a result without spacing. If Digits is larger than 32, it is truncated to 32.

See also

Hex2Dec

  

Converts a hexadecimal string to a decimal value.

IntToRoman

  

Represent an integer with roman numerals.


Documentation generated on: Jul 22 2023