toHex

toHex(number: Number): String

10 進数を 16 進数に変換します。

DataWeave バージョン 2.2.0 で導入されました。

パラメーター

名前 説明

number

入力数値。

次の例では、さまざまな入力での ​toHex​ の動作を示します。

ソース

%dw 2.0
import toHex from dw::core::Numbers
output application/json
---
{
    a: toHex(-1),
    b: toHex(100000000000000000000000000000000000000000000000000000000000000),
    c: toHex(0),
    d: toHex(null),
    e: toHex(15),
}

出力

{
  "a": "-1",
  "b": "3e3aeb4ae1383562f4b82261d969f7ac94ca4000000000000000",
  "c": "0",
  "d": null,
  "e": "f"
}

toHex(number: Null): Null

toHex​ を null 値に使用できるようにするヘルパー関数。

DataWeave バージョン 2.2.0 で導入されました。