0

我试图在最后一个小数点后切断所有内容并将“html”添加到末尾

html

<a href="http://www.youversion.com/bible/gen.1.ceb">http://www.youversion.com/bible/gen.1.ceb</a>

当前代码返回“gen.1.ceb”

name = urlparse.urlparse(url).path.split('/')[-1]

我想让名字得到“gen.1.html”

4

2 回答 2

2

你可以这样做:

filename = urlparse.urlparse(url).path.split('/')[-1]  # get file name
name = filename.rsplit('.', 1)[0] + '.html'  # change the extension
于 2012-05-10T22:17:07.463 回答
2
import re
re.sub(r'\.[A-Za-z]+$','.html',url)
于 2012-05-10T22:23:41.600 回答