That doesn't really help much...  I think you just replied to the wrong
post.  That answer really doesn't have anything to do with my question,
I don't think...  Thanks anyway.

Matt

-----Original Message-----
From: Daryl Meese [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 21, 2003 8:09 PM
To: Matt Palermo; [EMAIL PROTECTED]
Subject: RE: [PHP] replacing everything between 2 strings

look into opendir and readdir

with opendir you can open a handle to a directory and use readdir in a
loop
to look at every file (fopen or whatever to load each file) then parse
your
files.  readdir may help you verify the files you are working on at
least
have the right extension.

Daryl

-----Original Message-----
From: Matt Palermo [mailto:[EMAIL PROTECTED]
Sent: Monday, July 21, 2003 6:52 PM
To: [EMAIL PROTECTED]
Subject: [PHP] replacing everything between 2 strings


Is there a way to replace everything between 2 given strings if it
exists?  Say I have:

$str = "replace anything and everything in here.";

Now I want to replace everything between the word "replace" and "here.",
so the new string could read something like this:

$str = "replace NOTHING here.";

So it keeps the two end points but just replaces everything in the
middle with a new specified string.  Please help me if you can.  Thanks.

Matt




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to