如何在某个设计记事本++之前删除所有字符?

时间:2017-10-05 22:14:46

标签: html regex notepad++

我需要保存表<table class="tftable" border="1"> information </table>。删除之前和之后的其他信息。

如何实现这一点更好。这种类型大约有90,000页。它们都具有相同的结构。表格中的信息不同。

<h1>jnouaoh098hwgv 03g030h </h1>
<div class="list-posts">
  <div class="post-item">
    <div class="text">
      <p>iuah8n987hauuih uouahou paniuaugpiubrebg940wbunv9wh0uvnw95n 8h 8hgu 0hu8gh</p>
      <h2>594w81grghiwuehuwn</h2>

      <table class="tftable" border="1">
        <tr>
          <th>aiurh8n 7a8 </th>
          <th>aihnguaw </th>
        </tr>
        <tr>
          <td>uuhqncm998m4</td>
          <td>от 11 000 wg.</td>
        </tr>
        <tr>
          <td>shshrs</td>
          <td>оsuhrguhousehrg</td>
        </tr>
          <td>sre e</td>
          <td>от 500 fs.</td>
        </tr>
        <tr>
          <td>rseh sreh</td>
          <td>от 400 ewf.</td>
        </tr>
        <tr>
          <td>ge ge</td>
          <td>от 350 gw.</td>
        </tr>
        <tr>
          <td>eg</td>
          <td>ge gew</td>
        </tr>
      </table>

<div class="footer">
  <div class="container">
    <div class="row">
      <div class="col-sm-4 text-left">
        <h5>aweaweh hahrhrhhrrrrrrrrrrarh
          <ul>
            <li><i class="fa fa-phone"></i> 598229929</li>
            <li><i class="fa fa-envelope"></i> 5191iuhyg7g</li>
            <li><i class="fa fa-map-marker"></i> 56cn847n9qc849</li>
          </ul>

1 个答案:

答案 0 :(得分:0)

如果您希望获得<table><\table> 以及此标记之间的内容的所有发生次数。
您可以在搜索模式中使用此 Regex

.*?(<table(.*)<\/table>).*

替换字段中的此标记:

\1

请勿忘记查看true选项:

Regular Expressions

. Matches new line

喜欢这张图片:

Notepad++ Screenshot