Re: extracting text - regex

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

 



Merlin Morgenstern wrote:

> Hello,
> 
> I am trying read text out of a text that is inbetween two divs.
> Somehow this should be possible with regex, I just can't figure out
> how.
> 
> Example:
> 
> <div id="test">
> bla blub
> </div>
> 
> I would like to extract the text "bla blub" out of this example.
> 

This might do the trick (not tested):

preg_match( "/<div\s+[^>]*>([^<]*)<\/div>", $yourtext, $match );
print $match[1];


/Per


-- 
Per Jessen, Zürich (16.8°C)


--
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