テーブル/ td/tr/thタグの幅と高さのすべての属性のスタイルを変更する必要があります。例えばPHP - スタイルの幅/高さ属性を変換するための正規表現
、
<table width="500" height="235" style="color:#FF0000;">
<tr>
<td width="30" height="25" style="color:#FFFF00;">Hello</td>
<td>World</td>
</tr>
</table>
になるはずです
<table style="color:#FF0000;width:500px;height:235px">
<tr>
<td style="color:#FFFF00;width:30px;height:25px">Hello</td>
<td>World</td>
</tr>
</table>
私はそれをどのように行うことができますか?
[汝は(X)HTMLと干渉するために正規表現を使用していなさい] (http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454) –
'style =" red "'は大きなナンセンスです。サンプルコードを整理してください。 – ThiefMaster
@Linus [それは間違っているのでその質問にリンクしてはいけません](http://stackoverflow.com/questions/4231382/regular-expression-pattern-not-matching-anywhere-in-string/4234491#4234491) – Gordon