It's a type of Planche
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
305B

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import re
  4. logger = logging.getLogger(__name__)
  5. ascii_characters = [chr(i) for i in range(32,127)]
  6. ascii_char_rgx = re.compile("{}".format(re.escape(ascii_characters)))
  7. def ascii_only(incoming_string):
  8. return control_char_rgx.sub("", incoming_string)