所以我有一个巨大的HTML表格,其中一些我已在下面插入:
node_modules
我有数千行,但我想要的每一行都是这样的
<thead>
<tr class="tableizer-firstrow">
<th>Name</th>
<th>Language</th>
<th>Pages</th>
<th>Author</th>
<th>Publisher</th>
<th>Category</th>
<th>Class 1</th>
<th>Class 2</th>
<th>Class 3</th>
<th>Class 4</th>
<th>Class 5</th>
<th>Class 6</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sarvanna Shikshan- Swapna Navhe Hakka!</td>
<td>Marathi</td>
<td>64</td>
<td>Vinaya Deshpande</td>
<td>Bharat Gyan Vigyan Samuday (BGVS) Maharashtra</td>
<td>Uncategorized</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Apalya Gavat Aple Arogya</td>
<td>Marathi</td>
<td> </td>
<td>-</td>
<td>Cehat Pune</td>
<td>Uncategorized</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
有什么办法可以为所有细胞插入吗?也许一个搜索和替换,每个第13次迭代或类似的东西?我无论如何都无法手动完成此操作。对不起,如果它出现在错误的主题中,我对Stackoverflow不是很熟悉。
答案 0 :(得分:1)
备份HTML代码,因为这可能会失败!
首先在Notepad ++中打开html。 在“搜索”选项中打开“搜索并替换”(Ctrl + F)。 选中“Regular Expresssion”选项和“find \ r和\ n”选项。
这是搜索文字:
<tr>(.*?)\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)<td>(.*?)</td>\r\n(.*?)</tr>
单击“全部替换”或单击“替换”逐步进入。
这就是替换的样子:
<tr>\1\r\n\2<td class=\"name\">\3</td>\r\n\4<td class=\"Language\">\5</td>\r\n\6<td class=\"Pages\">\7</td>\r\n\8<td class=\"Author\">\9</td>\r\n$10<td class=\"Publisher\">$11</td>\r\n$12<td class=\"Category\">$13</td>\r\n$14<td class=\"Class 1\">$15</td>\r\n$16<td class=\"Class 2\">$17</td>\r\n$18<td class=\"Class 3\">$19</td>\r\n$20<td class=\"Class 4\">$21</td>\r\n$22<td class=\"Class 5\">$23</td>\r\n$24<td class=\"Class 6\">$25</td>\r\n$26</tr>
我不是最好的程序员所以你。我希望这适用于所有人,因为我刚刚在你给我们的小片段上测试过它。
答案 1 :(得分:0)
这是一个javascript解决方案:您可以随时在浏览器中运行它,然后从DevTool复制/粘贴输出。
注意: Class属性不能包含空格。如果是,则元素将具有2个类。例如:Class
和1
不仅仅是Class 1
var cls = ['name', 'Language', 'Pages', 'Author', 'Publisher', 'Category', 'Class-1', 'Class-2', 'Class-3', 'Class-4', 'Class-5', 'Class-6'];
[].forEach.call(document.querySelectorAll('tbody > tr'), function(row) {
[].forEach.call(row.querySelectorAll('td'), function(cell, index) {
cell.classList.add(cls[index]);
});
});
&#13;
table {
border-collapse:collapse;
}
td {
border:1px solid;
}
&#13;
<table>
<thead>
<tr class="tableizer-firstrow">
<th>Name</th>
<th>Language</th>
<th>Pages</th>
<th>Author</th>
<th>Publisher</th>
<th>Category</th>
<th>Class 1</th>
<th>Class 2</th>
<th>Class 3</th>
<th>Class 4</th>
<th>Class 5</th>
<th>Class 6</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sarvanna Shikshan- Swapna Navhe Hakka!</td>
<td>Marathi</td>
<td>64</td>
<td>Vinaya Deshpande</td>
<td>Bharat Gyan Vigyan Samuday (BGVS) Maharashtra</td>
<td>Uncategorized</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>Apalya Gavat Aple Arogya</td>
<td>Marathi</td>
<td> </td>
<td>-</td>
<td>Cehat Pune</td>
<td>Uncategorized</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
&#13;