Hi folks...
I would like to replace the part "CCC" in the string
$string="AAA_BBB_CCC.php3"
with the string "DDD".
Maybe someone can give me a command doing this.
THX
the fastest way is to use str_replace().
$new_str = str_replace("CCC", "DDD", "$old_str");
http://www.php.net/manual/en/function.str-replace.php