[ create a new paste ] login | about

Link: http://codepad.org/nevLWMq8    [ raw code | output | fork ]

PHP, pasted on Jun 7:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

$text = '<p width="50px;" style="padding:0px;"><strong style="padding:0;margin:0;">hello</strong></p><table style="text-align:center"></table>';

/* temporary change table tags */
$textTemp = str_replace(array("<table","/table>"),array('###','+++'),$text);


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



echo "\n\n";
$finalText =  str_replace(array("###","+++"),array("<table","/table>"),$text_2);
echo $finalText ;

?>


Output:
1
2
3


<p><strong>hello</strong></p><table style="text-align:center"></table>


Create a new paste based on this one


Comments: