<html>
<body>
<script type="text/javascript">
var str = "Visit W3Schools, W3Schools is a place to study web technology.";
var patt = new RegExp("W3Schools","g");
var result;
while ((result = patt.exec(str)) != null) {
document.write(result);
document.write("<br />");
document.write(patt.lastIndex);
document.write("<br />");
}
</script>
</body>
</html>