贴吧图片的url格式有“<img ... src="XXX.jpg" width=...>和“<img ... src="XXX.jpg" height=...>”
现在我用re.compile('r<img.+?src="(.+?\.jpg)" (width|height)')去匹配,会发生TypeError: expected string or bytes-like object的错误。
但是用re.compile('r<img.+?src="(.+?\.jpg)" width’)就好好的