<?php $sampleString = "<a href='{{url}}'>Link</a> <p>This text {{url}} will not get replaced</p> <a href='{{url}}' download='true'>Another Link</a>"; $regex = "/(?<=href=')()(?={{url}}.*>)/"; $replaced = preg_replace($regex, "https://myurl.com?redirect=\1", $sampleString); echo $replaced;
You have javascript disabled. You will not be able to edit any code.