标签: regex python-2.7 pdf url find
我需要从网址中删除文件名(例如:' number.pdf'):
最后,我想得到这个:
我该怎么做?
有什么想法吗?谁说我?
答案 0 :(得分:1)
使用os.path.dirname()可以轻松完成此操作。
os.path.dirname()
示例:
import os print(os.path.dirname('http://URL.com/S01/000/users/info/4512.pdf'))
输出:
http://URL.com/S01/000/users/info