是否有一个Delphi等效的C utoa函数,允许我提供基数?我正在使用Delphi 2007,并且必须读取一个使用utoa使用32的基数命名的文件。我宁愿不重新发明轮子并引入我自己的错误。 [编辑:]它将以与IntToStr操作相同的方式运行,它使用基数10,因此IntToStr的等效utoa将是utoa(值,10);
例如,整数100应返回值“34”。
答案 0 :(得分:3)
嗯,我搜索了我的旧代码,发现了这个似乎有效!
function ItoA(value : Cardinal; Radix : Cardinal) : string;
const
acCharRef : array [0 .. 35] of char
= (
'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F',
'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N',
'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
'W', 'X', 'Y', 'Z'
);
var
nIndex : Integer;
szBuild : string;
begin
{* Now loop, taking each digit as modulo radix, and reducing the value
* by dividing by radix, until the value is zeroed. Note that
* at least one loop occurs even if the value begins as 0,
* since we want "0" to be generated rather than "".
*}
szBuild := '';
repeat
nIndex := value mod radix;
szBuild := acCharRef[nIndex] + szBuild;
value := value div radix;
until value = 0;
result := szBuild;
end;