我非常了解如何使用bs4替换标签中的文本,但我如何将p-tag中的特定字符实际更改为包含在b-tag中的另一个字符或字符串?
如果我想加粗/突出显示段落中的所有j,那就是一个例子。
答案 0 :(得分:2)
如果你想在文本中插入标签,你必须将整个文本分成3个部分;之前的一切,文本进入标签,以及之后的所有内容。
每次在文本中找到匹配项时都必须这样做,因此您需要在插入后跟踪结束片段:
def inject_tag(text, start, end, tagname, **attrs):
# find the document root
root = text
while root.parent:
root = root.parent
before = root.new_string(text[:start])
new_tag = root.new_tag(tagname, **attrs)
new_tag.string = text[start:end]
after = root.new_string(text[end:])
text.replace_with(before)
before.insert_after(new_tag)
new_tag.insert_after(after)
return after
然后使用上面的函数替换特定的索引:
>>> import re
>>> from bs4 import BeautifulSoup
>>> soup = BeautifulSoup('''\
... <p>The quick brown fox jumps over the lazy dog</p>
... ''')
>>> the = re.compile(r'the', flags=re.I)
>>> text = soup.p.string
>>> while True:
... match = the.search(unicode(text))
... if not match: break
... start, stop = match.span()
... text = inject_tag(text, start, stop, 'b')
...
>>> print soup.prettify()
<html>
<head>
</head>
<body>
<p>
<b>
The
</b>
quick brown fox jumps over
<b>
the
</b>
lazy dog
</p>
</body>
</html>
答案 1 :(得分:-1)
您可以使用find_all()
函数定期尝试所有<p>
元素,为您希望的字母注入<b>
元素,例如:
from bs4 import BeautifulSoup
import sys
import re
soup = BeautifulSoup(open(sys.argv[1]))
for p in soup.find_all('p'):
p.string = re.sub(r'(r)', r'<b>\1</b>', p.string)
print(soup.prettify(formatter=None))
请注意,我使用formatter=None
来避免转换HTML实体。
使用此测试文本:
<div>
<div class="post-text" itemprop="text">
<p>I'm well aware on how to replace texts in tags using bs4 but how would I actually change a specific character in, say a p-tag, into another character or string enclosed in a b-tag?</p>
<p>An example would be if I wanted to bold/highlight all the j's in a paragraph.</p>
</div>
</div>
像以下一样运行:
python script.py infile
产量:
<html>
<body>
<div>
<div class="post-text" itemprop="text">
<p>
I'm well awa<b>r</b>e on how to <b>r</b>eplace texts in tags using bs4 but how would I actually change a specific cha<b>r</b>acte<b>r</b> in, say a p-tag, into anothe<b>r</b> cha<b>r</b>acte<b>r</b> o<b>r</b> st<b>r</b>ing enclosed in a b-tag?
</p>
<p>
An example would be if I wanted to bold/highlight all the j's in a pa<b>r</b>ag<b>r</b>aph.
</p>
</div>
</div>
</body>
</html>