RegExp
in Javascript
(具体的には関数)を使用しmatch
て、HTML 本文の文とその文内の単語の出現を見つけようとしています。以下は、私が持っている疑似コードです。
<!DOCTYPE html>
<html>
<body id="hello">
<p id="demo">Click the button to display the matches.</p>
<div> <input type="button" value="search" onclick="myFunction('<p id="demo">Click the button to display the matches', 'button')" />Try it </div>
<script>
function myFunction(sentence, word)
{
//var str="The rain in SPAIN stays mainly in the plain";
//var toMatch = "The rain in SPAIN stays mainly in the plain";
var r = new RegExp(word, 'g');
var oldHTML = document.getElementById("hello").innerHTML;
var n=oldHTML.match(r);
alert("no. of matches = " + n.length);
document.getElementById("demo").innerHTML=n;
}
</script>
</body>
</html>
上記の HTML では、文と 'button' という単語が 1 回だけ出現しますが、検索数 = 4 とn = button,button,button,button
.
私の質問:
1. その RegExp で 4 回の検索が行われるのはなぜですか?
2. HTML セクションを検索してbody
正しい回答を得るにはどうすればよいですか?