如何在JavaScript中将给定字符串N中的每个字母下移到字母表中?

我们得到了一串字母。我们的任务是用与英文字母相距n个字母的字母替换每个字母;

如果n = 1,则将a替换为b,将b替换为c,以此类推(z将被a替换)。

例如-

const str = "crazy";

const n = 1;

输出应该是-

alphabeticShift(inputString) = "dsbaz".

示例

以下是代码-

const str = 'crazy';

const alphabeticShift = (str = '', n = 1) => {

   let arr = [];

   for(let i = 0; i < str.length; i++) {

      arr.push(String.fromCharCode((str[i].charCodeAt() + n)));

   }

   let res = arr.join("").replace(/{/g, 'a');;

   return res;

};

console.log(alphabeticShift(str));

输出结果

以下是控制台上的输出-

dsbaz

以上是 如何在JavaScript中将给定字符串N中的每个字母下移到字母表中? 的全部内容, 来源链接: utcz.com/z/334649.html

回到顶部