在 JavaScript 中交换字母与其后续字母


我们需要编写一个 JavaScript 函数,该函数接收一个字符串,并将字符串中的每个字母从英文字母更改为其后续元素。

例如:如果字符串是 −

const str = 'how are you';

输出

那么输出应该为 −

const output = 'ipx bsf zpv'

因此,让我们编写此函数的代码 −

示例

其代码为 −

const str = 'how are you';
const isAlpha = code => (code >= 65 && code <= 90) || (code >= 97 && code <= 122);
const isLast = code => code === 90 || code === 122;
const nextLetterString = str => {
   const strArr = str.split('');
   return strArr.reduce((acc, val) => {
      const code = val.charCodeAt(0);
      if(!isAlpha(code)){
         return acc+val;
      };
      if(isLast(code)){
         return acc+String.fromCharCode(code-25);
      };
      return acc+String.fromCharCode(code+1);
   }, '');
};
console.log(nextLetterString(str));

控制台中的输出为 −

ipx bsf zpv

更新于:2020 年 10 月 17 日

165 次浏览

开启您的职业生涯

完成课程获取证书

开始
广告