gpt4 book ai didi

python - 如何在文本元素后附加
标签?

转载 作者:行者123 更新时间:2023-11-30 23:13:20 26 4
gpt4 key购买 nike

我正在使用 BeautifulSoup 解析 HTML 文件,但遇到了 < br> 标签。我想在插入列表元素后附加 < br> 标记,但它不起作用。做到这一点最简单的方法是什么?

soup = BeautifulSoup(open("test.html"))
mylist = [Item_1,Item_2]
for i in range(len(mylist)):
#insert Items to the 4. column

这是默认的 HTML:

<html>
<body>
<table>
<tr>
<th>
1. Column
</th>
<th>
2. Column
</th>
<th>
3. Column
</th>
<th>
4. Column
</th>
<th>
5. Column
</th>
<th>
6. Column
</th>
<th>
7. Column
</th>
<th>
8. Column
</th>
</tr>
<tr class="a">
<td class="h">
Text in first column
</td>
<td>
<br/>
</td>
<td>
<br/>
</td>
<td>
<!--I want to insert items here-->
</td>
<td>
1
</td>
<td>
37
</td>
<td>
38
</td>
<td>
38
</td>
</tr>
</table>
</body>
</html>

这是我想要制作的 HTML

<html>
<body>
<table>
<tr>
<th>
1. Column
</th>
<th>
2. Column
</th>
<th>
3. Column
</th>
<th>
4. Column
</th>
<th>
5. Column
</th>
<th>
6. Column
</th>
<th>
7. Column
</th>
<th>
8. Column
</th>
</tr>
<tr class="a">
<td class="h">
Text in first column
</td>
<td>
<br/>
</td>
<td>
<br/>
</td>
<td>
Item_1 <br>
Item_2
</td>
<td>
1
</td>
<td>
37
</td>
<td>
38
</td>
<td>
38
</td>
</tr>
</table>
</body>
</html>

最佳答案

要附加标签,请首先使用 new_tag() 创建它工厂函数,如下所示:

soup.td.append(soup.new_tag('br'))

考虑以下程序。对于 html 中的每个表格单元格(即每个 td ),它会附加一个 <br/>标签和一些文本到单元格。

from bs4 import BeautifulSoup

html_doc = '''
<html>
<body>
<table>
<tr>
<td>
data1
</td>
<td>
data2
</td>
</tr>
</table>
</body>
</html>
'''

soup = BeautifulSoup(html_doc)
mylist = ['addendum 1', 'addendum 2']
for td,item in zip(soup.find_all('td'), mylist):
td.append(soup.new_tag('br'))
td.append(item)
print soup.prettify()

结果:

<html>
<body>
<table>
<tr>
<td>
data1
<br/>
addendum 1
</td>
<td>
data2
<br/>
addendum 2
</td>
</tr>
</table>
</body>
</html>

关于python - 如何在文本元素后附加 <br> 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29371620/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com