최신 웹 개발 튜토리얼
 

JavaScript문자열 endsWith () 메서드

자바 스크립트 문자열 참조 자바 스크립트 문자열 참조

문자열로 끝나는 경우 확인 "우주."

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");

N의 결과는 다음과 같습니다

true
»그것을 자신을 시도

자세한 내용은 아래 예 "자신을보십시오."


정의 및 사용

endsWith() 메소드는 문자열이 지정된 문자열의 문자로 종료 여부를 결정합니다.

이 방법은 반환 true 문자열이 문자로 끝나는, 그리고 경우에 false 이 아니라면.

참고 : endsWith() 메소드는 대소 문자를 구분합니다.


브라우저 지원

방법
endsWith() (41) 12.0 (17) 9 (36)

통사론

string.endsWith( searchvalue , length )

매개 변수 값

Parameter Description
searchvalue Required. The string to search for
length Optional. Specify the length of the string to search. If omitted, the default value is the length of the string

기술적 세부 사항

반환 값 : 부울. 반환 true 문자열 값으로 끝나는 경우 그렇지 않으면 반환 false
자바 스크립트 버전 : ECMAScript를 6

예

더 예

문자열 "세계"로 끝나는 경우 문자열을 가정하면 11 자이며, 확인 :

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("world", 11);

N의 결과는 다음과 같습니다

true
»그것을 자신을 시도

자바 스크립트 문자열 참조 자바 스크립트 문자열 참조