Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

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