我必須將字母轉換爲相應的數字,例如我有一個像「DRSG004556722000TU77」這樣的數據,並且A的索引是10,B是11,C是12等等,Z最多爲35.將字母轉換爲相應數字
任何幫助提示?
這裏是回到我的ASCII碼的JavaScript,但我想上述indecies對各字母
var string = DRSG004556722000TU77;
function getColumnName(string) {
return ((string.length - 1) * 26) + (string.charCodeAt(string.length - 1) - 64);
}
document.write(getColumnName(string));
@Do wnvoter,你能解釋一下嗎? –