gpt4 book ai didi

javascript - 凯撒密码 - 空格和其他字符

转载 作者:行者123 更新时间:2023-11-30 19:32:09 25 4
gpt4 key购买 nike

我在下面创建了一个凯撒密码代码,但我希望返回的字符串包含空格和其他字符。我已经尝试过正则表达式,但这似乎并没有解决问题,或者我没有正确使用它,我不太确定。

感谢任何帮助。谢谢!

function caesarCipher(str, n) {
let newStr = '';
let alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('')
let regex = /[a-z]/

for (let i = 0; i < str.length; i++) {
if (str[i].match(regex) === false) {
newStr += str[i]
continue;
}
let currentIndex = alphabet.indexOf(str[i]);
let newIndex = currentIndex + n;
newStr += alphabet[newIndex];
}
return newStr
}

console.log(caesarCipher('ebiil tloia!', 3)) //should return hello world! but returns hellocworldc

最佳答案

RegExp.test 返回一个 bool 值,String.match 返回一个数组。这一行:

if (str[i].match(regex) === false) {

应该是

if (regex.test(str[i]) === false) {

这应该捕获任何不是小写字母的值(空格、标点符号等)——如果你也想编码大写字母,请在正则表达式的末尾添加 i 标志:/[a-z]/i

关于javascript - 凯撒密码 - 空格和其他字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56318434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com