Is there a Delphi equivalent of the C utoa function, that allows me to provide a radix? I'm using Delphi 2007, and have to read a file which has been named using a radix of 32 with utoa. I'd rather not re-invent the wheel and introduce my own bugs. [Edit:] It would operate the same way that IntToStr operates, which uses base 10 so the equivalent utoa of IntToStr would be utoa(value, 10);
As an example, the integer 100 should return a value of "34".