On the question of regularity

  briefName = re.findall(r"(?:(?!(?:|))[\u4E00-\u9FFF()]){5,20}(?:|)", response.text)
  


 ?:
Feb.28,2022

matches the following characters in (), but does not return the result


non-capture group

Menu