Skip to content

Instantly share code, notes, and snippets.

@maricris-sn
Created October 23, 2010 09:21
Show Gist options
  • Save maricris-sn/641991 to your computer and use it in GitHub Desktop.
Save maricris-sn/641991 to your computer and use it in GitHub Desktop.
def smiley(str)
str = str.sub(':)', "<img src='/images/emoticons/1.gif' alt='smile'/>")
str = str.sub(':(', "<img src='/images/emoticons/2.gif' alt='sad'/>")
str = str.sub(';)', "<img src='/images/emoticons/3.gif' alt='wink'/>")
str = str.sub(':D', "<img src='/images/emoticons/4.gif' alt='grin'/>")
str = str.sub(':P', "<img src='/images/emoticons/5.gif' alt='tongue'/>")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment