module Gem::Text

def clean_text(text)

printing.
Remove any non-printable characters and make the text suitable for
#
def clean_text(text)
  text.gsub(/[\000-\b\v-\f\016-\037\177]/, ".".freeze)
end