lastIndexOf()

차노·2023년 8월 18일
0

JS

목록 보기
68/96

'lastIndexOf()' is a JavaScript string method that returns the index of the last occurrence of a specified substring or character within a string.

lastIndexOf()는 스트링 내에서 특정 서브스트링 또는 문자의 마지막 인덱스를 리턴하는 자바스크립트 스트링 메소드이다.

This method searches the string from right to left and returns the inex of the last matching occurence.

이 메소드는 오른쪽에서 왼쪽까지 스트링을 서치하고 맞는 마지막 인덱스를 반환한다.

If the substring is not found, it returns -1.

발견되지 않을 경우, -1을 반환한다.

Syntax

  • searchValue: The substring or character to search for within the string.

    스트링 내에서 찾는 서브 스트링 또는 문자.

  • fromIndex: (optional) The index at which to start searching backwards.

    뒤로 찾기 시작하는 인덱스 번호.

If omitted, the search starts from the end of the string.

생략될 경우, 스트링의 마지막에서부터 시작한다.

In this example, the lastIndexOf('hello') method call searches for the last occurrence(발생; 일어남) of the substring 'hello' within the string.

위 예에서, 라스트인덱스오브 메소드 콜(헬로)는 스트링 안에서 마지막 서브스트링 발생을 찾는다.

Since the last occurence starts at index 13, the method returns 13.

마지막 발생이 인덱스 13에서 시작했으니, 메소드는 13을 반환한다.

0개의 댓글