Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 785 Bytes

dw-numbers-functions-toradixnumber.adoc

File metadata and controls

51 lines (37 loc) · 785 Bytes

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"
}