Re: [PHP] Finding text in a variable

2007-07-07 Thread Alan Milnes
On 07/07/07, Robert Cummings <[EMAIL PROTECTED]> wrote: On Fri, 2007-07-06 at 22:46 +0100, Alan Milnes wrote: > I have a piece of code which uses curl to get a web page and puts it > into a variable. I now need to search that variable and find > everything between `div class="msgarea"` and the n

Re: [PHP] Finding text in a variable

2007-07-06 Thread Robert Cummings
On Fri, 2007-07-06 at 22:46 +0100, Alan Milnes wrote: > I have a piece of code which uses curl to get a web page and puts it > into a variable. I now need to search that variable and find > everything between `div class="msgarea"` and the next `/div` > > >From what I have found elsewhere I think

[PHP] Finding text in a variable

2007-07-06 Thread Alan Milnes
I have a piece of code which uses curl to get a web page and puts it into a variable. I now need to search that variable and find everything between `div class="msgarea"` and the next `/div` From what I have found elsewhere I think I will need to use a regular expression but can anyone point m