Javascript生成字符串的哈希值(Hash)

Javascript生成字符串的哈希值(Hash)

ZKEASOFT August 08, 2018


Javascript将字符串转换成整型哈希值(Hash),然后就可以使用这些哈希值来做一些处理了。

代码

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

使用

"hashstring".hashCode()

微信公众号