SublimeText 2 / REGEX - Remove everything in between two tags including line breaks?

后端 未结 1 818
长情又很酷
长情又很酷 2021-01-12 11:13

I have a CSV document littered with thousands of instances of a table that I need to remove. I assume I can use REGEX, but I can\'t seem to find an expression to remove it.

相关标签:
1条回答
  • 2021-01-12 12:06

    Got it. SublimeText has special tags for REGEX apparently.

    (?s)<table(.*?)</table>
    
    0 讨论(0)
提交回复
热议问题