2017-06-11 275 views

回答

1

你應該刪除你的正則表達式尾部的im。在Python中,您可以將標誌作爲參數傳遞給您的預期功能。例如:

re.search(r'data-super-full-img\s*=\s*\"(.+?)\"', my_string, flags=re.I|re.M)