我有以下HTML:
<td width=140 style='width:105.0pt;padding:0cm 0cm 0cm 0cm'>
<p class=MsoNormal><span style='font-size:9.0pt;font-family:"Arial","sans-serif";
mso-fareast-font-family:"Times New Roman";color:#666666'>OCCUPANCY
TAX:</span></p>
</td>
某些HTML属性未引用,例如:width = 140和class = MsoNormal
对于那种东西是否有任何PHP函数,如果不是在HTML中清除它的聪明方法是什么?
谢谢。
答案 0 :(得分:2)
我猜你可以使用正则表达式:
/\s([\w]{1,}=)((?!")[\w]{1,}(?!"))/g
\s match any white space character [\r\n\t\f ]
1st Capturing group ([\w]{1,}=)
[\w]{1,} match a single character present in the list below
Quantifier: {1,} Between 1 and unlimited times, as many times as possible, giving back as needed [greedy]
\w match any word character [a-zA-Z0-9_]
= matches the character = literally
2nd Capturing group ((?!")[\w]{1,}(?!"))
(?!") Negative Lookahead - Assert that it is impossible to match the regex below
" matches the characters " literally
[\w]{1,} match a single character present in the list below
Quantifier: {1,} Between 1 and unlimited times, as many times as possible, giving back as needed [greedy]
\w match any word character [a-zA-Z0-9_]
(?!") Negative Lookahead - Assert that it is impossible to match the regex below
" matches the characters " literally
g modifier: global. All matches (don't return on first match)
这将实现如下:
echo preg_replace_callback('/\s([\w]{1,}=)((?!")[\w]{1,}(?!"))/', function($matches){
return ' '.$matches[1].'"'.$matches[2].'"';
}, $str);
并且会导致:
<td width="140" style='width:105.0pt;padding:0cm 0cm 0cm 0cm'>
<p class="MsoNormal"><span style='font-size:9.0pt;font-family:"Arial","sans-serif";
mso-fareast-font-family:"Times New Roman";color:#666666'>OCCUPANCY
TAX:</span></p>
</td>
请注意,这是一个肮脏的例子,肯定可以清理。