美汤分开   和 ;在 HTML 标记内

  • 本文关键字:HTML nbsp python beautifulsoup
  • 更新时间 :
  • 英文 :


我的代码

html = "<td>1.08&nbsp; 8.00&nbsp; 151.00</td>"
from bs4 import BeautifulSoup
print BeautifulSoup(html,"lxml").renderContents()

输出:

<html><body><td>1.08  8.00  151.00</td></body></html>

期望输出:

1.08 ; 8.00 ; 151.00 ;    
>>> from bs4 import BeautifulSoup
... html = "<td>1.08&nbsp; 8.00&nbsp; 151.00</td>"
... soup = BeautifulSoup(html, "lxml")
>>> print(soup.find('td').text)
1.08  8.00  151.00
>>> nums = soup.find('td').text.split()
>>> nums
['1.08', '8.00', '151.00']
>>> ' ; '.join(nums)
'1.08 ; 8.00 ; 151.00'

最新更新