我正在尝试html
使用以下内容获取一些文本BeautifulSoup
:
test = '''<p class="author"><a href="./viewtopic.php?p=1829610"></a>by <strong>FinancialDave</a></strong> Thu Oct 17, 2013 12:52 am </p>'''
testsoup = BeautifulSoup(test)
testsoup.text
这会给我这样的结果:u'by FinancialDave Thu Oct 17, 2013 12:52 am
但是我想要的只是Thu Oct 17, 2013 12:52 am
。有没有办法做到这一点?
提前致谢。