converting hexidecimals into strings

Jarrett Billingsley jarrett.billingsley at gmail.com
Fri Oct 3 15:11:04 PDT 2008


On Fri, Oct 3, 2008 at 5:46 PM, llee <Larry at workingwondersus.com> wrote:
> Does anyone know of an efficient way to convert integers into strings that represent the integer as a hexadecimal?
>

If you're using Phobos, std.string.toString(number, 16).

If Tango, tango.text.convert.Integer.toString(number, "x").


More information about the Digitalmars-d-learn mailing list