Skip to content

Instantly share code, notes, and snippets.

@sharnie
Last active August 29, 2015 14:00
Show Gist options
  • Save sharnie/984bbe5a3d5c8f582a3a to your computer and use it in GitHub Desktop.
Save sharnie/984bbe5a3d5c8f582a3a to your computer and use it in GitHub Desktop.
replace characters with ASCII code
"sharnie".each_char do |char|
puts char.ord-97 # 97 specify where to start on the ascii table
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment