我正在尝试编写一个小型密码程序,需要将单词与标点符号组合在一起。如果我使用字母/数字/特殊字符,代码可以完美运行!通过 ) 但不适用于逗号、句点或问号。我检查过,代码返回未定义,但仅限于这三个标点符号。我写了这个代码的以前版本,它去掉了所有工作正常的标点符号,现在我试图再次添加标点符号。

var alpha = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", " ", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", ",", ".", "?"];


else if (oldLet == "!") {
    index = 63;
    keyIndex = keyIndex - 1;
} else if (oldLet == ".") {
    index = 84;
    keyIndex = keyIndex - 1;
} else if (oldLet == "?") {
    index = 85;
    keyIndex = keyIndex - 1;
}

var newLet = alpha[index];
alert(newLet);
cipherArray.push(newLet);
}
cipherArray = cipherArray.join("");
document.getElementById("output").innerHTML = cipherArray;
}
我完全不明白为什么代码可以完美地处理字母、数字和特殊字符,但拒绝正确处理标点符号。任何帮助表示赞赏。

最佳答案

伙计,我想你弄错了索引,

   else if(oldLet == ","){
                alert("got here 2" + oldLet);
                index = 83;
                alert("got here 3" + alpha[index]);
                keyIndex = keyIndex -1;
            }
            else if(oldLet == "."){
                index = 84;
                keyIndex = keyIndex -1;
            }
            else if(oldLet == "?"){
                index = 85;
                keyIndex = keyIndex -1;
            }

看,这不是 83、84、85,而是 73、74 和 75。
你可以检查做:
alert(alpha.indexOf(","));

关于数组中的 Javascript 标点符号返回 'undefined',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62944942/

10-12 13:34