Replacing Punctuation
Im trying to replace all mentions of .html in a html fine to .jsp. For example if i had:
<html>
<h1>
Some Text Here
</h1>
<a href ="page1.html"> Go to Page1
</html>
i would want to ONLY replace the .html in the link.
By using:
String replace= src.replaceAll(".html", ".jsp");
i succesfully replace the .html in the link but i also replace the html at the start and at the beginning despite them not having a "." in front of them? Any ideas on how to fix this PLEASE

