gpt4 book ai didi

javascript - 将 id "1_0xr__abc@xyz.com__abc@uvw.com__054gg"转换或编码为数字字符串

转载 作者:行者123 更新时间:2023-11-29 15:34:39 25 4
gpt4 key购买 nike

有没有什么可以转换或编码的id ="1_0xr__abc@xyz.com__abc@uvw.com__054gg" 转化为特定的数字字符串

例如假设 id="abcd@er.com" 被转换成任何数字字符串 "1233452556"

在 javascript 中可以这样做吗?

最佳答案

你可以散列字符串

String.prototype.hashCode = function() {
var hash = 0, i, chr, len;
if (this.length == 0) return hash;
for (i = 0, len = this.length; i < len; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
};

来源:http://werxltd.com/wp/2010/05/13/javascript-implementation-of-javas-string-hashcode-method/

使用

id="abcd@er.com".hashCode();

关于javascript - 将 id "1_0xr__abc@xyz.com__abc@uvw.com__054gg"转换或编码为数字字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30772224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com