我不知道为什么我的ROT13转换器不能使用大写字母。 它适用于小写字母。 我一直在尝试查找问题,但是没有运气。 感谢您的帮助。
这是代码
var rot13 = str => {
let alphabet = 'abcdefghijklmnopqrstuvwxyz';
let alphabetUp = alphabet.toUpperCase();
let ci = [];
for (let i = 0; i < str.length; i++) {
let index = alphabet.indexOf(str[i]);
// for symbols
if (!str[i].match(/[a-z]/ig)) {
ci.push(str[i])
// for letters A to M
} else if (str[i].match(/[A-M]/ig)) {
//lowercase
if (str[i].match(/[a-m]/g)) {
ci.push(alphabet[index + 13])
//uppercase (doensn't work)
} else if (str[i].match(/[A-M]/g)) {
ci.push(alphabetUp[index + 13])
}
// for letters N to Z
} else if (str[i].match(/[n-z]/ig)) {
//lowercase
if (str[i].match(/[n-z]/g)) {
ci.push(alphabet[index - 13])
//uppercase (doensn't work)
} else if (str[i].match(/[N-Z]/g)) {
ci.push(alphabetUp[index - 13])
}
}
}
return ci.join("");
}
答案 0 :(得分:0)
您可以轻松地做到这一点,方法是在索引中添加13,然后使用模26来获取新索引,然后检查原始字母是否为大写。试试这个
const rot13 = str => {
let alphabet = 'abcdefghijklmnopqrstuvwxyz';
let newstr = [...str].map(letter => {
let index = alphabet.indexOf(letter.toLowerCase());
if(index === -1) {
return letter;
}
index = (index + 13) % 26;
return letter === letter.toUpperCase() ? alphabet[index].toUpperCase() : alphabet[index];
})
return newstr.join("");
}
console.log(rot13('hello'))