Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的任务:
将字符串中的每个字母替换为字母表中紧随其后的字母(即,c 变为 d,z 变为 a)。
现在我已经在我的 C 课程中使用了一些花哨的模 26 业务和大量的 ASCII 值的减法和偏移来完成这种类型的事情。
它是否会在 JavaScript 中占用更多行(因为我必须使用fromCharCodeand而不是将 char 视为 int charCodeAt),还是 JavaScript 有一些用于此任务的快捷方式?
fromCharCode
charCodeAt
你可以尝试使用这个: -
String.fromCharCode('A'.charCodeAt(0) + 1)
工作JSFiddle