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
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP