Skip to content

HexHelper

youyihj edited this page Oct 12, 2020 · 4 revisions

HexHelper

HexHelper can interconvert of hexadecimal strings and decimal integers

Importing the package

You'd better import the package to avoid errors and write script easier.

import mods.zenutils.HexHelper;

ZenMethods

// String toHexString(int i)  DEC => HEX
// int toDecInteger(String Hex) HEX => DEC

HexHelper.toDecInteger("ABCDEF"); // return 11259375
HexHelper.toHexString(114514); // return "1bf52"
Clone this wiki locally