from urllib.request import urlopen
import re
urlpath =urlopen("http://blablabla.com/file")
string = urlpath.read().decode('utf-8')
pattern = re.compile('*.docx"')
onlyfiles = pattern.findall(string)
print(onlyfiles)
目标输出
['http://blablabla.com/file/1.docx','http://blablabla.com/file/2.docx']
但我得到了这个
[]
尝试此操作时收到此错误消息。
re.error: nothing to repeat at position 0