Contact Us 1-800-596-4880

toRadixNumber

toRadixNumber(number: Number, radix: Number): String

Transforms a decimal number into a number string in other radix.

Introduced in DataWeave version 2.2.0.

Parameters

Name Description

number

The decimal number.

radix

The radix of the result number.

Example

This example shows how the toRadixNumber behaves under different inputs.

Source

%dw 2.0
import toRadixNumber from dw::core::Numbers
output application/json
---
{
    a: toRadixNumber(2, 2),
    b: toRadixNumber(255, 16)
}

Output

{
  "a": "10",
  "b": "ff"
}