为什么这个字符串匹配模式?
pattern = """
^Page \d of \d$|
^Group \d Notes$|
^More word lists and tips at http://wwwmajortests.com/word-lists$|
"""
re.match(pattern, "stackoverflow", re.VERBOSE)
据我说,它应该匹配诸如“Page 1 of 1”或“Group 1 Notes”之类的字符串。