Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having trouble stripping this piece of HTML:

title="External Link" alt="External Link"/></h5>
                </a>


                This text is needed without the spaces..

            </div>

Here is the general method I attempted:

$array = array();
preg_match( '/<\/h5>(.*?)               
            /si', $data, $array ) ;

I just can't seem to crack it.

Any help would be appreciated,

Thanks!

P.s The text may also contain html tags itself, such as <em> or <strong>

share|improve this question

1 Answer

up vote 1 down vote accepted

This should work.

preg_match('#</h5>\s*</a>\s*(\w.+)\s*</div>#Uis', $data, $array);
share|improve this answer
Perfect, but there is sometimes html styling inside the text area. Could i possibly check for that aswell? For example if a <em> tag appears. – Alexwhin Aug 10 '11 at 22:16
If you need that styling too, so it will work. If you wanna grab text to the styling(some html code), so change (\w.+) to (\w[^<>]+)\s*. Or if you need clear that styling after grabing, just use htmlspecialcharts($matchedText); – KÄ™stutis Aug 10 '11 at 22:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.