Re: Finding text in a variable

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 07/07/07, Robert Cummings <robert@xxxxxxxxxxxxx> 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 next `/div`
>
> >From what I have found elsewhere I think I will need to use a regular
> expression but can anyone point me in the right direction as to
> exactly how I would go about this?

Something like the following:

<?php

if( preg_match( '/div class="msgarea"(.*)\\/div/Uims', $content,
$bits ) )
{
    print_r( $bits );
}

?>

Cheers - that did the trick.

Alan

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux