我尝试使用bigInteger.js库在160位整数中进行操作,但我希望保留十六进制格式的表示,以便我可以将它们传输并将它们用作ID。
var git_sha1 = require('git-sha1');
var bigInt = require("big-integer");
var uuid = git_sha1((~~(Math.random() * 1e9)).toString(36) + Date.now());
console.log('in hex \t', uuid); // See the uuid I have
console.log('in dec \t', bigInt(uuid, 16).toString()); // convert it to bigInt and then represent it as a string
console.log('to hex \t', bigInt(uuid, 16).toString(16)); // try to convert it back to hex
这是我的输出:
in hex 4044654fce69424a651af2825b37124c25094658
in dec 366900685503779409298642816707647664013657589336
to hex 366900685503779409298642816707647664013657589336
我需要to hex
与in hex
相同。有什么建议?谢谢!
答案 0 :(得分:2)
答案 1 :(得分:0)
我不知道你是否依附于big-integer
,但如果你没有,bigint完全符合你的要求。
编辑:如果你想保持大整数,这应该可以解决问题:
function toHexString(bigInt) {
var output = '';
var divmod;
while(bigInt.notEquals(0)) {
divmod = bigInt.divmod(16);
bigInt = divmod.quotient;
if (divmod.remainder >= 10)
output = String.fromCharCode(87+divmod.remainder) + output;
else
output = divmod.remainder + output;
}
return output;
}