tags:

views:

42

answers:

1

i want to grap data from this site by regexp

http://aymanalrefai.wordpress.com/2010/03/15/596/

i tried this

/<div class="entry">.*?<p class="postinfo">/is

but it didn't give me a correct result

any help ?

A: 

Try this :

/<div class="entry">[\s\S]+?</div>/is

Stephan