Closed This-is-XiaoDeng closed 8 months ago
没看懂
在执行
await context_review(text, "text", event.user_id)
时就会提交审核请求怎么感觉逻辑有点问题,
re.fullmatch(r"(\[\[Img:\d+\.\d+\]\]\])+", text) is None
不是指“文本中不存在图片”吗
re.fullmatch(r"(\[\[Img:\d+\.\d+\]\]\])+", text)
判断文本是否只存在图片, is None
就是含有其他文本
含有文本时,and
的左端为 True
,Python 会执行右端的表达式
只有图片时,and
左端为 False
,and
表达式直接返回 False
re.fullmatch(regex, string)
相当于 re.match(f"^{regex}$", string)
Fixes #641