Did you know if it's possible to catch exact string from uri with a regex ?
For exemple :
https://example.com
https://example.com/pizza
These two URIs are in the same text but I have to make a preg_replace for https://example.com only.
str_replace does not work here because it necessarily affects the second URI :P
Thanks for your time !
Edit : It's work with this expression : https://regex101.com/r/K7rgTh/6 But I need to catch inside html tags or not :P