i have this html code:

<p style="padding:0px;">
<strong style="padding:0;margin:0;">hello</strong>
</p>

but it should become (for all possible html tags):

<p>
<strong>hello</strong>
</p>

this is driving me crazy, is there a regexp expert that can give me a hand? thanks!

link|improve this question

3  
You can't parse HTML with regex. – Matchu Jun 11 '10 at 20:44
1  
7  
While the trendy thing on stackoverflow is to deride anybody for wanting to use regular expressions, this is a case where you can actually use a regular expression, though it won't be entirely pretty. – McPherrinM Jun 11 '10 at 21:03
feedback

4 Answers

up vote 9 down vote accepted

Adapted from my answer on a similar question

$text = '<p style="padding:0px;"><strong style="padding:0;margin:0;">hello</strong></p>';

echo preg_replace("/<([a-z][a-z0-9]*)[^>]*?(\/?)>/i",'<$1$2>', $text);

// <p><strong>hello</strong></p>

The RegExp broken down:

/              # Start Pattern
 <             # Match '<' at beginning of tags
 (             # Start Capture Group $1 - Tag Name
  [a-z]         # Match 'a' through 'z'
  [a-z0-9]*     # Match 'a' through 'z' or '0' through '9' zero or more times
 )             # End Capture Group
 [^>]*?        # Match anything other than '>', Zero or More times, not-greedy (wont eat the /)
 (\/?)         # Capture Group $2 - '/' if it is there
 >             # Match '>'
/i            # End Pattern - Case Insensitive

Add some quoting, and use the replacement text <$1$2> it should strip any text after the tagname until the end of tag /> or just >.

Please Note This isn't necessarily going to work on ALL input, as the Anti-HTML + RegExp will tell you. There are a few fallbacks, most notably <p style=">"> would end up <p>"> and a few other broken issues... I would recommend looking at Zend_Filter_StripTags as a more full proof tags/attributes filter in PHP

link|improve this answer
this worked out alright – andufo Jun 11 '10 at 22:04
2  
+999 for breaking down the regex! – Nico Burns Mar 13 '11 at 13:48
This was exactly what I was groping towards. Ta muchly. – dartacus Nov 7 '11 at 9:53
Shouldn't use Regular Expressions on HTML – Jleagle Nov 13 '11 at 14:12
@Jleagle are you serious? There is already a comment IN THE ANSWER mentioning ways to break this regular expression while parsing HTML. There are times when parsing HTML with a regexp is plenty fine (like the HTML is generated by some known system, therefore quite regular. If you are going to comment something about not parsing HTML with Regular Expressions - at least add something that isn't already stated in the answer. – gnarf Nov 13 '11 at 22:22
show 1 more comment
feedback

Here is how to do it with native DOM:

$dom = new DOMDocument;                 // init new DOMDocument
$dom->loadHTML($html);                  // load HTML into it
$xpath = new DOMXPath($dom);            // create a new XPath
$nodes = $xpath->query('//*[@style]');  // Find elements with a style attribute
foreach($nodes as $node) {              // Iterate over found elements
    $node->removeAttribute('style');    // Remove style attribute
}
echo $dom->saveHTML();                  // output cleaned HTML
link|improve this answer
feedback

I would avoid using regex as HTML is not a regular language and instead use a html parser like Simple HTML DOM

You can get a list of attributes that the object has by using attr. For example:

$html = str_get_html('<div id="hello">World</div>');
var_dump($html->find("div", 0)->attr); /
/*
array(1) {
  ["id"]=>
  string(5) "hello"
}
*/

foreach ( $html->find("div", 0)->attr as &$value ){
    $value = null;
}

print $html
//<div>World</div>
link|improve this answer
i'll give it a try later ;) in the meantime gnarf's regexp solution works fine. – andufo Jun 11 '10 at 22:05
feedback

Regex's are too fragile for HTML parsing. In your example, the following would strip out your attributes:

echo preg_replace(
    "|<(\w+)([^>/]+)?|",
    "<$1",
    "<p style=\"padding:0px;\">\n<strong style=\"padding:0;margin:0;\">hello</strong>\n</p>\n"
);

Update

Make to second capture optional and do not strip '/' from closing tags:

|<(\w+)([^>]+)| to |<(\w+)([^>/]+)?|

Demonstrate this regular expression works:

$ phpsh
Starting php
type 'h' or 'help' to see instructions & features
php> $html = '<p style="padding:0px;"><strong style="padding:0;margin:0;">hello<br/></strong></p>';
php> echo preg_replace("|<(\w+)([^>/]+)?|", "<$1", $html);
<p><strong>hello</strong><br/></p>
php> $html = '<strong>hello</strong>';
php> echo preg_replace("|<(\w+)([^>/]+)?|", "<$1", $html);
<strong>hello</strong>
link|improve this answer
this one has a bug, if there is only <strong>hello</strong> it returns <stron>hello</stron> – andufo Jun 11 '10 at 22:05
This works for the HTML supplied in the question. – Greg K Jun 12 '10 at 3:58
Updated regex to address issues identified in comments – Greg K Jan 14 at 14:44
feedback

Your Answer

 
or
required, but never shown

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