I am parsing a json feed and displaying its content in a android webview. Everything works great. But now i want to hide all img tags in that android webview.
The problem is that the content in the webview is showen dynamically, that means i don't know the img tag parameters. So i need something to replace everything in that string that begins with
<img ... >
and ends with
</img>
How can I do that?