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
广告