Table of Contents

Search

  1. Preface
  2. Libraries for Industry Standards
  3. Using Libraries
  4. Descriptions of the Libraries
  5. Generate Library Objects

Libraries Guide

Libraries Guide

HexToDecimal

HexToDecimal

The
HexToDecimal
transformer converts an even number of characters representing a series of hexadecimal numbers to a series of decimal numbers.
The following table describes an additional property of the
HexSequenceToDecimal
transformer:
Property
Description
endian
Determines how the transformation stores data in memory. The
endian
property has the following options:
  • big_endian. The transformation stores the most significant byte in the smallest address. The bytes are in the same order as the input.
  • little_endian. The transformation stores the least significant byte in the smallest address. The bytes are in the reverse order of the input. This is the default setting.

Example

You provide the following hexadecimal input to a
HexToDecimal
transformer:
1017
The transformer translates the full input number from hexadecimal to decimal. By default, the transformer produces a little-endian transformation. Little-endian transformations reverse the order of the bytes.
The transformer provides the following output:
5904

0 COMMENTS

We’d like to hear from you!