I've got a html page in which these lines occure:
• geavanceerd zoeken • voorkeuren • taalhulpmiddelen het web doorzoeken zoeken in <br><br>Gevondenhi<hr>5
I've built an script that searches for characters/words (defined by a user) on that html page. The search is done with the line:
if (grep /\Q$words\E/,$htmlFile){print "Found";}else{print qq{"Not Found";}; }
It works perfectly, except I want to be able to search for the diamond character, which is created by •
So my question is:
How can I search on the html page that the browser shows, not on the actual html source code.
I do hope you understand my question.
• geavanceerd zoeken • voorkeuren • taalhulpmiddelen het web doorzoeken zoeken in <br><br>Gevondenhi<hr>5
I've built an script that searches for characters/words (defined by a user) on that html page. The search is done with the line:
if (grep /\Q$words\E/,$htmlFile){print "Found";}else{print qq{"Not Found";}; }
It works perfectly, except I want to be able to search for the diamond character, which is created by •
So my question is:
How can I search on the html page that the browser shows, not on the actual html source code.
I do hope you understand my question.