-1

我正在尝试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。有没有办法做到这一点?

提前致谢。

4

1 回答 1

-1

您需要使用正则表达式提取日期字符串。BeautifulSoup 在这里帮不了你。

于 2013-10-17T07:03:31.430 回答