Skip to content

Instantly share code, notes, and snippets.

@soawesomeman
Created December 3, 2008 05:54
Show Gist options
  • Save soawesomeman/31433 to your computer and use it in GitHub Desktop.
Save soawesomeman/31433 to your computer and use it in GitHub Desktop.
# forgot where I got this, thanks dude!
class String
def to_ascii_iconv
converter = Iconv.new('ASCII//IGNORE//TRANSLIT', 'UTF-8')
converter.iconv(self).unpack('U*').select{ |cp| cp < 127 }.pack('U*')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment