What I am trying to do is to replace a specific string with another only if found in a certain position.
php:
$substr = substr_replace($string, $replacement, $stringstart);
$str = str_replace($quoted, $replacement, $str);
I plan to replace $string with $replacement in the string $str but only after $stringstart characters.
I also have $stringend. If I could also use that(because I know exactly the length of $replacement), it would be great. This is optional though