如何更改另一个内部的特定标签?

时间:2016-09-29 18:34:35

标签: java regex

如何更换TD标签内的所有P标签而不更改TD外的P标签?

<p align="justify">Example 01</p>

<td style="text-align: center;" width="104">
<p align="center"><strong>My Strong</strong></p>

<p align="center"><strong>Anoter content</strong></p>
</td>
<td style="text-align: center;" width="153">
<p align="center"><strong>lorem</strong></p>
</td>

我期待得到这个:

<p align="justify">Example 01</p>

<td style="text-align: center;" width="104">
<span align="center"><strong>My Strong</strong></span>

<span align="center"><strong>Anoter content</strong></span>
</td>
<td style="text-align: center;" width="153">
<span align="center"><strong>lorem</strong></span>
</td>

0 个答案:

没有答案