我有一个CSV文档,里面堆满了我需要删除的数千个表实例。我假设我可以使用REGEX,但我似乎无法找到一个表达式来删除它。我在底部附上了一个样本。
我认为<table(.*)</table>
会起作用,但这似乎忽略了换行符。是否有人可以帮我删除这些?
<table cellpadding=""5"" align=""center"" class=""shippingcost"" style=""width: 525px;"">
<tbody>
<tr>
<td colspan=""2"" style=""text-align: center;"">Shipping:
</td>
</tr>
<tr class=""shippingcostrow"">
<td>
<div align=""right"">Domestic
Canada
International
</td>
<td width=""400"">
<div align=""left"">Insured shipping is included to all U.S. destinations.
Canadian buyers pay $28 for EMS insured shipping.
All International Buyers pay $35 for EMS insured shipping.
</td>
</tr>
</tbody>
</table>
答案 0 :(得分:13)
知道了。 SublimeText显然有REGEX的特殊标签。
(?s)<table(.*?)</table>