Skip to content

Instantly share code, notes, and snippets.

@teamon
Created January 18, 2009 11:19
Show Gist options
  • Save teamon/48603 to your computer and use it in GitHub Desktop.
Save teamon/48603 to your computer and use it in GitHub Desktop.
require "iconv"
class String
def to_p
Iconv.iconv('ascii//translit//IGNORE', 'utf-8', self).first.gsub("'", '').gsub(/[^a-zA-Z0-9-]+/, '-').gsub(/^-/, '').gsub(/-$/, '')
end
end
puts "asd asd $ asd".to_p
puts "zażĻ=ółć".to_p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment