I am working with HTML which has javascript links like below:
<a href='javascript:openExternalLink(5542, true, 'http://www.websitedomain.com')'>Links Text Here</a>
I need to replace these with standard anchor tags like so:
<a href='http://www.websitedomain.com'>Links Text Here</a>
What would be the best solution to achive this in Jython?
Thanks
Eef
The best way would probably be to use regular expressions.