JavaScript에서 문자열이 다른 문자열로 시작하는지 확인하는 방법
JavaScript의 String.prototype.startsWith() 메서드를 사용하면 다음을 수행할 수 있습니다. 문자열이 지정된 하위 문자열로 시작하는지 확인하세요.
ES6 이전에는 폴리필을 사용하여 추가할 수 있었습니다. 지원되지 않는 브라우저에 대한 startWith() 기능:
Matthias Bynens의 String.prototype.startsWith 심:
if (!String.prototype.startsWith) { String.prototype.startsWith = function(searchString, position) { position = position || 0; return this.substr(position, searchString.length) === searchString; }; }
ES6-심:
require('es6-shim');
사용법:
한번 shimmed startWith() 또는 호환되는 브라우저를 사용하는 경우 다음과 같이 사용할 수 있습니다. 다음:
console.log("Hello World!".startsWith("He")); // true var haystack = "Hello world"; var prefix = 'orl'; console.log(haystack.startsWith(prefix)); // false
위 내용은 JavaScript 문자열이 특정 하위 문자열로 시작하는지 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!