본문 바로가기
javaScript/JS Tutorial

[javaScript]문자열 검색 search() indexOf() 차이점

by mooyou 2022. 9. 21.
728x90
300x250
SMALL

search()

문자열에서 지정된 값을 검색하고 일치하는 위치를 반환

<p id="demo"></p>

<script>
let str = "Please locate where 'locate' occurs!";
document.getElementById("demo").innerHTML = str.search("locate");
</script>

실행결과

7

 

indexOf()와 차이점

  • search() 메서드는 두 번째 시작 위치를 지정하는 인수를 사용할 수 없다.
  • indexOf() 메서드는 정규식을 사용할 수 없다.

 

 

참고 : https://www.w3schools.com/js/js_string_search.asp

728x90
반응형
LIST

댓글