It's a type of Planche
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ascii_only.py 305B

12345678910111213
  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)