Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm not too good with regular expressions, but with PHP I'm wanting to remove the style attribute from HTML tags in a string that's coming back from TinyMCE.

So change <p style="...">Text</p> to just vanilla <p>Test</p>.

How would I achieve this with something like the preg_replace() function?

share|improve this question
3  
you do not want to use regex for this. – maček Apr 1 '11 at 18:25
1  
If regular expressions aren't recommended for this task, then what is? – Martin Bean Apr 1 '11 at 18:40
1  
Use php's DOM methods. – Maerlyn Apr 1 '11 at 18:41
2  
When the html string comes back from TinyMCE, you do not just want to remove a single attribute or manually look over the DOM tree. Use HTMLPurifier, which can be configured to strip out style= attributes. – mario Apr 1 '11 at 19:09

6 Answers

The pragmatic regex (<[^>]+) style=".*?" will solve this problem in all reasonable cases. The part of the match that is not the first captured group should be removed, like this:

$output = preg_replace('/(<[^>]+) style=".*?"/i', '$1', $input);

Match a < followed by one or more "not >" until we come to space and the the style="..." part. The /i makes it work even with STYLE="...". Replace this match with $1, which is the captured group. It will leave the tag as is, if the tag doesn't include style="...".

share|improve this answer
+1 --- Just used this to get rid of style spam that occurs in Google Sites pages when users do pastes of text in the smart editor without using "Paste as plain text" in their browser. I used Notepad++ and the replace command. For Notepad++, the format is \1 and not $1. – Fuhrmanator Mar 12 at 16:55
does not work when style is escaped. It should be either refactored to make it work or $input should be replaced with stripcslashes($input) – bicycle Mar 24 at 15:57
This won't work with style='...' – q0rban Apr 30 at 19:13

Something like this should work (untested code warning):

<?php

$html = '<p style="asd">qwe</p><br /><p class="qwe">qweqweqwe</p>';

$domd = new DOMDocument();
libxml_use_internal_errors(true);
$domd->loadHTML($html);
libxml_use_internal_errors(false);

$domx = new DOMXPath($domd);
$items = $domx->query("//p[@style]");

foreach($items as $item) {
  $item->removeAttribute("style");
}

echo $domd->saveHTML();
share|improve this answer
4  
+1 for using a proper, regex-less solution – ThiefMaster Apr 1 '11 at 18:55

Regular expressions are not the right tool for this job. There's an excellent question with answers that you will find useful here: How to parse HTML with PHP?

share|improve this answer
1  
First link is pointless. That talks about nested html and parsing. Not about removing a single attribute, for which regular expressions are quite workable. – mario Apr 1 '11 at 19:07
1  
@mario: The first link is for the laughs. And I 'll be very happy to break any regexp that you deem workable until you give up :) – Jon Apr 1 '11 at 19:15
Retreat is not part of my business plan!!1! Anyway, I've seen one of the regex monsters for dissecting a html tag, and luckily it does not fit into a comment field. So I'm excused. ;P – mario Apr 1 '11 at 19:18

I use this:

function strip_word_html($text, $allowed_tags = '<a><ul><li><b><i><sup><sub><em><strong><u><br><br/><br /><p><h2><h3><h4><h5><h6>')
{
    mb_regex_encoding('UTF-8');
    //replace MS special characters first
    $search = array('/&lsquo;/u', '/&rsquo;/u', '/&ldquo;/u', '/&rdquo;/u', '/&mdash;/u');
    $replace = array('\'', '\'', '"', '"', '-');
    $text = preg_replace($search, $replace, $text);
    //make sure _all_ html entities are converted to the plain ascii equivalents - it appears
    //in some MS headers, some html entities are encoded and some aren't
    //$text = html_entity_decode($text, ENT_QUOTES, 'UTF-8');
    //try to strip out any C style comments first, since these, embedded in html comments, seem to
    //prevent strip_tags from removing html comments (MS Word introduced combination)
    if(mb_stripos($text, '/*') !== FALSE){
        $text = mb_eregi_replace('#/\*.*?\*/#s', '', $text, 'm');
    }
    //introduce a space into any arithmetic expressions that could be caught by strip_tags so that they won't be
    //'<1' becomes '< 1'(note: somewhat application specific)
    $text = preg_replace(array('/<([0-9]+)/'), array('< $1'), $text);
    $text = strip_tags($text, $allowed_tags);
    //eliminate extraneous whitespace from start and end of line, or anywhere there are two or more spaces, convert it to one
    $text = preg_replace(array('/^\s\s+/', '/\s\s+$/', '/\s\s+/u'), array('', '', ' '), $text);
    //strip out inline css and simplify style tags
    $search = array('#<(strong|b)[^>]*>(.*?)</(strong|b)>#isu', '#<(em|i)[^>]*>(.*?)</(em|i)>#isu', '#<u[^>]*>(.*?)</u>#isu');
    $replace = array('<b>$2</b>', '<i>$2</i>', '<u>$1</u>');
    $text = preg_replace($search, $replace, $text);
    //on some of the ?newer MS Word exports, where you get conditionals of the form 'if gte mso 9', etc., it appears
    //that whatever is in one of the html comments prevents strip_tags from eradicating the html comment that contains
    //some MS Style Definitions - this last bit gets rid of any leftover comments */
    $num_matches = preg_match_all("/\<!--/u", $text, $matches);
    if($num_matches){
        $text = preg_replace('/\<!--(.)*--\>/isu', '', $text);
    }
    $text = preg_replace('/(<[^>]+) style=".*?"/i', '$1', $text);
return $text;
}
share|improve this answer
That looks… Verbose. – Martin Bean Apr 20 at 22:57

You could handle it client side, the easiest would be with jQuery. Something like:

$("#tinyMce p").removeAttr("style");
share|improve this answer
1  
That's insecure as the user can still tamper with the data submitted to the server. – ThiefMaster Apr 1 '11 at 18:34

Here you go:

<?php

$html = '<p style="border: 1px solid red;">Test</p>';
echo preg_replace('/<p style="(.+?)">(.+?)<\/p>/i', "<p>$2</p>", $html);

?>

By the way, as pointed out by others, regex are not suggested for this.

share|improve this answer
<p   style="something-evil"> - BOOM. <p foo="bar" style="something-evil"> - BOOM. – ThiefMaster Apr 1 '11 at 18:35
That was obviously crafted on the example reported in the original question. You can anyway improve the regex using something like this: preg_replace('/<p(.*?)style="(.+?)"(.*?)>(.+?)<\/p>/i', "<p>$4</p>", $links); and get no BOOM :) – lorenzo.marcon Apr 1 '11 at 18:44

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.