Hello Desikan,
this should suit your needs.
~James
> Please help me out in the following...
>
> $is='is';
> echo eregi_replace(" ".$is." "," ","This is a test string which contains
> is in dismissal");
> ?>
>
>
> Actually I want to replace "is" alone from the string and not all the
> words t
use substr_replace
string substr_replace(string text, string replacement, integer start,
integer length)
EG:
');
print(substr_replace($text, "are", 10, 2));
?>
10 is the place where you want it to start replacement, 2 (is) more forward
it ends.
"Desikan" <[EMAIL PROTECTED]> wrote in message
2 matches
Mail list logo