This topic created in 4648 days ago, the information mentioned may be changed or developed.
regex = re.compile('''<a href="TeacherInfo.asp\?uid=(\d+)"><b>(.*)<\/b><\/a>''')
regex = re.compile('''<a href="TeacherInfo.asp\?uid=(\d+)"><b>(.*)<\/b><\/a>.*[\s\S]*UId=\d+">(.*)<\/a>''')
被备注的第一句能够正常匹配,但第二句就不行,但第二句在http://rubular.com/测试能够成功匹配,难道用了什么Python不支持的规则?