so im not too great with regex and i am trying to search a string for "&option=" plus a number [0-100] so far i have this :
$link = str_replace("^&option[0-9]"," ",$actual_link);
Can any one help me with the correct regex expression.
Thanks in advanced.
preg_replace
as opposed tostr_replace
– Ohgodwhy 20 hours ago