Hi Brucey, thanks for your very useful modules. I'm trying out Format, which is alot like the format function in C. However, it seems like hexadecimal/binary are not supported, could this perhaps be added?
Format ("%2x", 10) ' " a"
Format ("%02X", 10) ' "0A"
Format ("%08b", 10) ' "00001010"
I think the C version also had %o for octal, but I don't think anyone uses that anymore.
Format ("%2x", 10) ' " a"
Format ("%02X", 10) ' "0A"
Format ("%08b", 10) ' "00001010"
I think the C version also had %o for octal, but I don't think anyone uses that anymore.