첫 번째와 두 번째 인수로 두 개의 문자열을 취하는 JavaScript 함수를 작성해야 합니다. 이 문자열을 str1 및 str2라고 합시다. 함수는 str2에 부분 문자열 조합이 있는지 확인해야 합니다. 결합하면 str2가 생성됩니다.
부분 문자열 조합은 문자를 건너뛸 수 있지만 str1에서 선택한 문자의 순서를 유지해야 함을 의미합니다.
예를 들어 -
입력 문자열이 -
인 경우const str1 = 'desxooajmepwele'; const str2 = 'example';
그러면 출력은 다음과 같아야 합니다. -
const output = true;
문자열 'example'은 str1에서 일부를 선택하고 문자의 순서를 유지함으로써 형성될 수 있기 때문입니다.
예시
이에 대한 코드는 -
const str1 = 'desxooajmepwele'; const str2 = 'example'; const containsString = (str1 = '', str2 = '') => { let [foundAt, next] = [0, 0]; for(const char of str2){ next = str1.slice(foundAt).indexOf(char); if (next === - 1){ return false; }; foundAt += next + 1; }; return true; }; console.log(containsString(str1, str2));
출력
콘솔의 출력은 -
true