Skip to content

Instantly share code, notes, and snippets.

@thisisniall
Created April 5, 2015 16:10
Show Gist options
  • Save thisisniall/8d2dff4792095a57e031 to your computer and use it in GitHub Desktop.
Save thisisniall/8d2dff4792095a57e031 to your computer and use it in GitHub Desktop.
def translatetapper(string)
idx = 0
while idx < string.length
if string[idx] == "'" && string[idx+1] != s
string[idx] = "h"
end
idx +=1
end
return string
end
puts(translatetapper("t'at s'ould make me want to t'ink t'at t'ere s'ould be more words with H in t'e t'reads t'at I make"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment