在 C# 中,如何将字符串的 ascii 值的总和转换为 base 36?
我的字符串“P0123456789”
谢谢。
您可以使用
var s = "P0123456789";
var result = s.Sum(x => x);
var base36ed = ConvertToBase(result,36);
输出 = GT
下面的方法在这里找到
public String ConvertToBase(int num, int nbase)
{
String chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
// check if we can convert to another base
if(nbase < 2 || nbase > chars.Length)
return "";
int r;
String newNumber = "";
// in r we have the offset of the char that was converted to the new base
while(num >= nbase)
{
r = num % nbase;
newNumber = chars[r] + newNumber;
num = num / nbase;
}
// the last number to convert
newNumber = chars[num] + newNumber;
return newNumber;
}