正規表現 Part7

このエントリーをはてなブックマークに追加
572sage
●正規表現の使用環境
php5

●検索か置換か?
置換

●説明
tableタグ内の改行(<br />)を全て削除したい

●対象データ
<table border="1" cellpadding="5" cellspacing="0" class="xx" id="xx"><br />
<tbody><br />
<tr><br />
<td><br />
</td><br />
</tr><br />
</tbody><br />
</table>

●希望する結果
<table border="1" cellpadding="5" cellspacing="0" class="xx" id="xx">
<tbody>
<tr>
<td>
</td>
</tr>
</tbody>
</table>