I need to delete all my images links to my wordpress posts with regex.
I use Search Regex Plugin for Wordpress. this plugin find content with regex in database and it can replace it.
Some examples I need to do :
<a rel="nofollow" href="https://www.exemple.com/test.jpg" class="link" title="test">
<img src="https://www.exemple.com/test.jpg" alt="test">
</a>
to
<img src="https://www.exemple.com/test.jpg" alt="test">
And
<a href="https://www.exemple.com/test1.png" title="test1" class="link">
<img src="https://www.exemple.com/test1.png" alt="test1">
</a>
to
<img src="https://www.exemple.com/test1.png" alt="test1">
I found some regex solution like here : https://regex101.com/r/xX9pJ8/1 or here https://stackoverflow.com/a/40292492/2831419 but I can't adapt it to my needs. If you have solution, please let me know thanks