I'm using java. And i want to find then replace hyperlink and anchor text of tag <a>
html. I knew i must use: replace()
method but i'm pretty bad about regex.
An example:
<a href="http://example.com">anchor text 1</a>
will be replaced by:
<a href="http://anotherweb.com">anchor text 2</a>
Could you show my the regex for that purpose? Thanks a lot.