content = "1<body>2</body>3"'中间代码省略re.Pattern = "(?<=\<\/body>)[\s\S]*"
content = re.Replace(content, "")希望得到1<body>2</body>的结果,但出现错误:实时错误'5017'
方法'~' 作用于对象'~'失败我已搜索到获得body标签内容更好的方法,但还是想知道这个表达式哪里出错了呢?谢谢!