JavaScript의 lastIndex 속성은 일치가 발생하고 다음 일치가 해당 위치에서 다시 시작될 때 인덱스 위치를 반환합니다. lastIndex 속성은 'g'modifier가 설정된 경우에만 작동합니다.
다음은 JavaScript의 lastIndex 속성에 대한 코드입니다. -
예시
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.sample,
.result {
font-size: 18px;
font-weight: 500;
color: red;
}
</style>
</head>
<body>
<h1>JavaScript lastIndex Property</h1>
<div class="sample">The king bought an expensive ring.</div>
<div style="font-weight: bold; color: black;" class="result"></div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to find the index of 'ing' in the above string</h3>
<script>
let sampleEle = document.querySelector(".sample");
let resultEle = document.querySelector(".result");
let regex = new RegExp("ing", "g");
regex.test(sampleEle.innerHTML);
document.querySelector(".Btn").addEventListener("click", () => {
resultEle.innerHTML +=
'"ing" found Current Index = ' + regex.lastIndex + "<br>";
regex.test(sampleEle.innerHTML);
resultEle.innerHTML += '"ing" found Current Index = ' + regex.lastIndex;
});
</script>
</body>
</html> 출력

'여기를 클릭' 버튼을 클릭하면 -
